
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #F0F6FF;
}

.custom-hero {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  background-image: url('../img/pattern.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: white;
}
.custom-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 114, 206, 0.8);
  background: linear-gradient(to right, #0072cee0, #f79520eb);
  z-index: 0;
}
.custom-hero .container {
  position: relative;
  z-index: 1;
}
.hero-logo-centered {
  max-width: 180px;
  margin-bottom: 20px;
}
.video-wrapper {
  max-width: 600px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  position: relative;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.cta-button2 {
  background-color: #ffffff;
  color: #0072ce;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 30px;
  border: 2px solid #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.cta-button:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.about-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  color: #333;
}

.benefits-section {
  background-color: #f1f1f1;
}
.benefit-box {
  background-color: #f1f1f1;
  padding: 1rem 0.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.material-icons {
  font-size: 40px;
  color: #0072ce;
  background-color: white;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-box:hover .material-icons {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
h5 {
  margin-top: 1rem;
  font-weight: 600;
  font-size: 1.25rem;
  color: #333;
}

.pricing-section {
  background-attachment: fixed;
}
.pricing-card {
  border-radius: 16px;
  padding: 40px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 114, 206, 0.2);
}
.pricing-card .card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.pricing-card .price {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 25px;
  color: #0072ce;
}
.pricing-card .price span {
  font-size: 1rem;
  color: #0072ce;
}
.pricing-card ul {
  padding-left: 0;
  margin-bottom: 30px;
}
.pricing-card ul li {
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bi-check-circle {
  color: #198754;
}
.bi-x-circle {
  color: #dc3545;
}
.highlighted {
  border: 2px solid #0072ce;
}
.btn-outline-primary {
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 500;
  transition: all 0.3s ease;
  color: #0072ce;
  border-color: #0072ce;
}
.btn-outline-primary:hover {
  background-color: #0072ce;
  color: #fff;
}

@media (max-width: 768px) {
    .hero-logo-centered {
        max-width: 150px;
        margin-bottom: 16px;
    }
}

        .stats-section {
            background-color: #09162e;
            color: #ffffff;
            padding: 20px 0;
        }
        .stat-item {
            margin-bottom: 30px;
        }
        .stat-item i {
            font-size: 3rem;
            margin-bottom: 15px;
        }
        .stat-item h2 {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 10px;
        }
        .stat-item p {
            font-size: 1.2rem;
            font-weight: 600;
        }



        .upgrade-section {
            background-color: #F0F6FF;
            border-radius: 20px;
            padding: 40px;
            margin: 40px auto;
            max-width: 1200px;
        }
        .upgrade-image-container {
            flex: 1;
            text-align: center;
        }
        .upgrade-image {
            width: 100%;
            max-width: 300px;
            border-radius: 20px;
        }
        .upgrade-content {
            flex: 2;
            color: #003366;
        }
        .upgrade-content h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .highlight {
            text-decoration: underline;
            text-decoration-color: #00A3FF;
            text-decoration-thickness: 4px;
        }
        .discount {
            color: #00A3FF;
            font-weight: 700;
        }
        .benefits-list {
            list-style-type: none;
            padding: 0;
            margin-bottom: 30px;
        }
        .benefits-list li {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        .cta-button1 {
            background-color: #f79520;
            color: #ffffff;
            border: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            width: 100%;
            max-width: 300px;
            margin-bottom: 20px;
        }
        .cta-button:hover {
            background-color: #0056b3;
        }
        .decline-text {
            color: #888888;
            font-size: 0.9rem;
            text-align: center;
            cursor: pointer;
            text-decoration: underline;
        }
        .decline-text:hover {
            color: #555555;
        }

/* Basisstijl voor de afbeelding */
.clickable-image {
    width: 300px;
    cursor: pointer;
    transition: transform 0.3s;
}

/* Stijl voor de overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    z-index: 9999;
    transition: visibility 0.3s, opacity 0.3s;
}

/* Vergrote afbeelding */
.enlarged-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

/* Overlay tonen */
.overlay.active {
    visibility: visible;
    opacity: 1;
}

.bg-light {
    --bs-bg-opacity: 1;
    background-color: #fff !important;
}

.bg-success {
    --bs-bg-opacity: 1;
    background-color: #0072ce !important;
}

.btn-warning {
    color: #fff;
    background-color: #deb467;
    border: 1px solid #00000033;
    border-radius: 8px;
    display: inline-block;
    padding: 12px 25px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
}

.btn-warning:hover {
    color: #fff;
    background-color: #bc9a5c;
    border: 1px solid #00000033;
    border-radius: 8px;
    display: inline-block;
    padding: 12px 25px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
}

.lift {
    box-shadow: 0 0.15rem 1.75rem 0 rgba(33, 40, 50, 0.15);
    transition: transform 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.lift:hover {
    transform: translateY(-0.3333333333rem);
    box-shadow: 0 0.5rem 2rem 0 rgba(33, 40, 50, 0.25);
}

/* ===== Cookie banner container ===== */
#cookie-banner {
  position: fixed;
  inset: auto 0 16px 0;
  display: flex;
  justify-content: center;
  z-index: 2147483647;
  transform: translateY(120%);
  opacity: 0;
  transition: transform .45s ease, opacity .4s ease;
  pointer-events: none;
}
#cookie-banner.show {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

.cookie-container {
  width: clamp(280px, 92vw, 980px);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  backdrop-filter: saturate(120%) blur(12px);
  -webkit-backdrop-filter: saturate(120%) blur(12px);
  background: var(--glass-bg);
  color: var(--text);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  border-radius: 16px;
  padding: 16px;
}
.cookie-icon {
  flex: 0 0 auto;
  border-radius: 10px;
}
.cookie-copy { flex: 1 1 auto; min-width: 0; }
.cookie-title { font-weight: 700; font-size: 1rem; line-height: 1.2; margin-bottom: 6px; }
.cookie-text { margin: 0 0 10px 0; font-size: .95rem; color: var(--muted); }

.cookie-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 8px;
  align-items: center;
}

.cookie-settings {
  margin-top: 10px;
  padding: 12px;
  border:1px solid var(--glass-border);
  border-radius: 12px;
  background: rgba(20,20,25,.35);
}
.settings-grid { display: grid; gap: 10px; }
.settings-row { display:flex; align-items:center; gap:10px; margin:0; }
.ck { accent-color: #0d6efd; width:18px; height:18px; }
.settings-actions { display:flex; gap:8px; justify-content:flex-end; margin-top:6px; }

/* ===== Mobile optimizations ===== */
@media (max-width: 576px) {
  .cookie-container {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie-icon {
    margin: 0 auto 12px auto;
  }
  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }
  .cookie-actions .btn {
    width: 100%;
  }
}

:root{
  --glass-bg: rgba(20,20,25,.6);
  --glass-border: rgba(255,255,255,.18);
  --text: #f6f7fb;
  --muted: #E9EAEE;
}

.btn-dark
 {
    --bs-btn-color: #0072ce;
    --bs-btn-bg: #fff;
    --bs-btn-border-color: #fff;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0072ce;
    --bs-btn-hover-border-color: #0072ce;
    --bs-btn-active-bg: #0a5795;
    --bs-btn-active-border-color: #0a5795;
}

:root{
  --bg:#0b0d12; --fg:#fff;
  --grad-a:#f79520; --grad-b:#f79520;
  --pause: 4s;
}

.pulse{
  position:relative; border:none; color:#fff; font-weight:800;
  padding:0.9rem 1.4rem; border-radius:999px;
  background:linear-gradient(90deg, var(--grad-a), var(--grad-b));
  box-shadow:0 6px 18px rgba(13,110,253,.35);
  overflow:hidden;
  transition: transform .25s ease, background .4s ease;
  will-change: transform;
}

.pulse::after{
  content:''; position:absolute; inset:0; left:-70%;
  background:linear-gradient(120deg, rgba(255,255,255,.35) 0%, rgba(255,255,255,0) 55%);
  transform:skewX(-25deg);
  transition:left .6s ease;
}

.pulse:hover, .pulse:focus{ background:linear-gradient(90deg, var(--grad-b), var(--grad-a)); outline:none; }

.pulse:hover::after, .pulse:focus::after{ left:130%; }

/* 1) Horizontale wiggle */
.wiggle-x{ animation: wiggle-x var(--pause) ease-in-out infinite; }
@keyframes wiggle-x{
  0%, 93%, 100% { transform: translateX(0); }
  2% { transform: translateX(-5px); }
  4% { transform: translateX(5px); }
  6% { transform: translateX(-4px); }
  8% { transform: translateX(4px); }
  10%{ transform: translateX(-3px); }
  12%{ transform: translateX(3px); }
  14%{ transform: translateX(0); }
}

/* 2) Verticale tik */
.wiggle-y{ animation: wiggle-y var(--pause) ease-in-out infinite; }
@keyframes wiggle-y{
  0%, 93%, 100% { transform: translateY(0); }
  2% { transform: translateY(-6px); }
  4% { transform: translateY(6px); }
  6% { transform: translateY(-4px); }
  8% { transform: translateY(4px); }
  10%{ transform: translateY(-2px); }
  12%{ transform: translateY(2px); }
  14%{ transform: translateY(0); }
}

/* 3) Scale-pop */
.pop-scale{ animation: pop-scale var(--pause) ease-out infinite; }
@keyframes pop-scale{
  0%, 94%, 100% { transform: scale(1); }
  4% { transform: scale(1.08); }
  6% { transform: scale(1.00); }
  8% { transform: scale(1.06); }
  10%{ transform: scale(1.00); }
  12%{ transform: scale(1.04); }
  14%{ transform: scale(1); }
}

/* 4) Rotate-flick */
.flick-rotate{ animation: flick-rotate var(--pause) ease-in-out infinite; }
@keyframes flick-rotate{
  0%, 94%, 100% { transform: rotate(0deg); }
  3%  { transform: rotate(-4deg); }
  6%  { transform: rotate(4deg); }
  9%  { transform: rotate(-2.5deg); }
  12% { transform: rotate(2.5deg); }
  14% { transform: rotate(0deg); }
}

/* 5) Combo */
.combo{ animation: combo var(--pause) ease-in-out infinite; }
@keyframes combo{
  0%, 93%, 100% { transform: translateX(0) scale(1); }
  2%  { transform: translateX(-3px) scale(1.06); }
  4%  { transform: translateX(3px)  scale(1.00); }
  6%  { transform: translateX(-2px) scale(1.04); }
  8%  { transform: translateX(2px)  scale(1.00); }
  10% { transform: translateX(-1px) scale(1.02); }
  12% { transform: translateX(1px)  scale(1.00); }
  14% { transform: translateX(0)    scale(1); }
}

.pulse:hover, .cta:focus{ animation: none; transform: scale(1.05); }

.pulse:focus-visible{ outline:2px solid #cfe2ff; outline-offset:3px; }

@media (prefers-reduced-motion: reduce){
  .pulse{ animation:none !important }
  .pulse::after{ transition:none }
}


@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0.75rem;
  background-color: #e0e5ec;
  border-radius: 0.35rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background: linear-gradient(90deg, #0072ce, #f79520);
  height: 4px;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
          animation: progress-bar-stripes 1s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
            animation: none;
  }
}


.faq-section {
   background-color: #f9f9f9;
   padding: 60px 20px;
}

/* ===== Scoped FAQ styles (only inside .dv-faq) ===== */
.dv-faq{
  --dv-bg:#f9f9f9;
  --dv-text:#000;
  --dv-divider: rgba(0,0,0,.12);
}
.dv-faq .faq-title{
  font-size: 2.5rem;
  color: #003366;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}
.dv-faq .accordion{ background:transparent; }
.dv-faq .accordion-item{
  background:var(--dv-bg);
  border:none;
  border-bottom:1px solid var(--dv-divider);
}
.dv-faq .accordion-button{
  background:var(--dv-bg);
  color:var(--dv-text);
  font-weight:800;
  text-transform:uppercase;
  padding:16px 0;
  box-shadow:none;
  font-size:1rem;
}
.dv-faq .accordion-button:focus{ box-shadow:none; border-color:transparent; }
.dv-faq .accordion-button:not(.collapsed){
  background:var(--dv-bg);
  color:var(--dv-text);
}
.dv-faq .accordion-body{
  background:var(--dv-bg);
  color:var(--dv-text);
  padding:0 0 16px 0;
  font-size:0.95rem;
  text-align: left;
}
.dv-faq .accordion-item:last-child{ border-bottom:none; }

/* Mobile tweaks (still scoped) */
@media (max-width: 576px) {
  .dv-faq .accordion-button { font-size:0.9rem; padding:12px 0; }
  .dv-faq .accordion-body { font-size:0.9rem; padding-bottom:12px; }
}

.emotietekst {
color: #504f4e;
line-height: 1.7em;
letter-spacing: .025em;
word-spacing: normal;
font-family: montlight, poppins, mont;
font-weight: normal;
font-size: 12pt;
text-align: left;
}

.boventitel {
letter-spacing: .025em;
font-family: poppins;
font-weight: bold;
line-height: 1.3em;
color: #fff;
font-size: 15pt;
}

.emotietitel {
letter-spacing: .025em;
font-family: poppins;
font-weight: bold;
font-size: 27pt;
line-height: 1.3em;
color: transparent;
-webkit-text-stroke: 1px #fff;
animation: back 20s linear infinite;
}


@font-face {font-family: autohand;
src: url('../fonts/Autography.otf');} 

@font-face {font-family: chaup;
src: url('../fonts/Chau.ttf');} 

@font-face {font-family: mont;
src: url('../fonts/Montserrat.ttf');} 

@font-face {font-family: montlight;
src: url('../fonts/Montserrat-Light.ttf');} 

@font-face {font-family: caveat-re;
src: url('../fonts/Caveat-Regular.ttf');}

@font-face {font-family: caveat-bo;
src: url('../fonts/Caveat-Bold.ttf');}

@font-face {font-family: caveat-me;
src: url('../fonts/Caveat-Medium.ttf');}

@font-face {font-family: caveat-sebo;
src: url('../fonts/Caveat-SemiBold.ttf');}

@font-face {font-family: neue-reg;
src: url('../fonts/Neue-Montreal-Regular.otf');} 

@font-face {font-family: neue-bold;
src: url('../fonts/Neue-Montreal-Bold.otf');} 

@font-face {font-family: indie;
src: url('../fonts/IndieFlower-Regular.ttf');} 

@font-face {font-family: nunito-reg;
src: url('../fonts/Nunito-Regular.ttf');} 

@font-face {font-family: nunito-bold;
src: url('../fonts/Nunito-ExtraBold.ttf');} 

@font-face {font-family: surgena;
src: url('../fonts/surgena.ttf');} 

@font-face {font-family: oswald;
src: url('../fonts/Oswald-Regular.ttf');} 

@font-face {font-family: oswald-bold;
src: url('../fonts/Oswald-Bold.ttf');} 

@font-face {font-family: proximanova;
src: url('../fonts/proximanova_regular.ttf');} 

@font-face {font-family: proximanova-bold;
src: url('../fonts/proximanova_bold.otf');} 

@font-face {font-family: nanumbrush;
src: url('../fonts/NanumBrushScript.ttf');}

.salestitel {
    font-weight: bold;
    text-shadow: 1px 2px 2px #777;
    font-family: oswald;
    font-size: 3rem;
    line-height: 1.5em;}

.gradienttitel {
    background: linear-gradient(180deg, #032b4b, #0072ce 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}