@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&family=Lora:ital,wght@0,400;0,600;0,700;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-family: 'Lora', serif; }
body { line-height: 1.7; color: var(--c-text); background-color: var(--c-bg); overflow-x: hidden; font-size: 18px; }

:root {
  --c-bg:          #FAFCFF;
  --c-bg-alt:      #EEF3FB;
  --c-bg-card:     #FFFFFF;
  --c-bg-dark:     #0C2340;
  --c-primary:     #1B5FA8;
  --c-primary-dk:  #0F4282;
  --c-primary-lt:  #E3EDFB;
  --c-accent:      #28A060;
  --c-accent-lt:   #E5F7ED;
  --c-text:        #0C2340;
  --c-text-sec:    #1A3A5C;
  --c-text-muted:  #6A8AAA;
  --c-border:      #C8D8EE;
  --c-cta:         #1B5FA8;
  --c-cta-hov:     #0F4282;
  --c-ok:          #28A060;
  --c-korting:     #E63329;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  28px;
  --shadow-sm:  0 2px 8px rgba(27,95,168,0.07);
  --shadow-md:  0 4px 24px rgba(27,95,168,0.11);
  --shadow-lg:  0 8px 48px rgba(27,95,168,0.15);
  --transition: all 0.3s ease;
  --container:  1200px;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.bg-alt { background-color: var(--c-bg-alt); }
a { text-decoration: none; color: inherit; }
.btn-primair, .btn-secundair { display: inline-block; padding: 18px 36px; border-radius: var(--radius-lg); font-family: 'Nunito', sans-serif; font-weight: 700; transition: var(--transition); text-align: center; cursor: pointer; font-size: 18px; }
.btn-primair { background-color: var(--c-cta); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primair:hover { background-color: var(--c-cta-hov); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secundair { background-color: transparent; color: var(--c-text); border: 2px solid var(--c-border); }
.btn-secundair:hover { border-color: var(--c-primary); color: var(--c-primary); }
.btn-block { display: block; width: 100%; }

/* Med Disclaimer */
.med-disclaimer { background-color: #FFF3E0; border-left: 4px solid #E65100; padding: 15px 20px; border-radius: var(--radius-sm); font-size: 15px; margin: 20px 0; color: #E65100; font-family: 'Nunito', sans-serif; }

/* Disclosure */
.disclosure-bar { background-color: var(--c-bg-alt); color: var(--c-text-muted); font-family: 'Nunito', sans-serif; font-size: 12px; text-align: center; padding: 10px; z-index: 900; position: relative; border-bottom: 1px solid var(--c-border); }

/* Header */
.site-header { position: sticky; top: 0; background-color: #fff; border-bottom: 1px solid var(--c-border); z-index: 100; transition: var(--transition); }
.site-header.sticky { box-shadow: var(--shadow-sm); padding: 5px 0; }
.header-inner { max-width: var(--container); margin: 0 auto; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; }
.header-logo { font-family: 'Nunito', sans-serif; font-weight: 800; color: var(--c-primary); font-size: 26px; }
.nav-list { display: flex; gap: 30px; list-style: none; align-items: center; }
.nav-link { font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 16px; color: var(--c-text-sec); }
.nav-link:hover { color: var(--c-primary); }
.nav-cta { background-color: var(--c-primary); color: #fff; padding: 12px 24px; border-radius: var(--radius-lg); font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 15px; }

/* Mobile Nav */
.hamburger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; }
.hamburger-line { width: 30px; height: 3px; background-color: var(--c-text); transition: var(--transition); border-radius: 3px; }
.mobile-nav-overlay { position: fixed; top: 0; right: -320px; width: 320px; height: 100vh; background-color: #fff; box-shadow: var(--shadow-lg); z-index: 2000; transition: var(--transition); padding: 40px; display: flex; flex-direction: column; gap: 20px; }
.mobile-nav-overlay.open { right: 0; }
.mobile-nav-backdrop { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(12,35,64,0.5); z-index: 1999; opacity: 0; pointer-events: none; transition: var(--transition); }
.mobile-nav-backdrop.open { opacity: 1; pointer-events: auto; }
.mobile-nav-close { align-self: flex-end; background: none; border: none; font-size: 36px; cursor: pointer; color: var(--c-text); font-family: 'Nunito', sans-serif; }
.mobile-nav-list { list-style: none; display: flex; flex-direction: column; gap: 20px; font-family: 'Nunito', sans-serif; }
.mobile-nav-link { font-size: 20px; font-weight: 700; color: var(--c-text-sec); }
.mobile-nav-cta { background-color: var(--c-primary); color: #fff; padding: 15px; text-align: center; border-radius: var(--radius-lg); margin-top: 20px; font-weight: 700; font-family: 'Nunito', sans-serif; }

@media(max-width: 768px) {
  .nav-list { display: none; }
  .hamburger { display: flex; }
}

/* Hero Center */
.hero-center { padding: 60px 20px; }
.hero-label { font-family: 'Nunito', sans-serif; font-size: 12px; text-transform: uppercase; color: var(--c-primary); font-weight: 800; letter-spacing: 2px; margin-bottom: 20px; }
.hero-img-main { max-width: 100%; width: 500px; height: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-md); margin-bottom: 40px; display: block; margin-left: auto; margin-right: auto; }
.hero-title { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: clamp(32px, 5vw, 56px); margin-bottom: 20px; line-height: 1.2; color: var(--c-text); max-width: 900px; margin-left: auto; margin-right: auto; }
.hero-sub { font-size: 20px; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; color: var(--c-text-sec); }
.hero-price-block { margin-bottom: 30px; display: flex; align-items: center; justify-content: center; gap: 15px; flex-wrap: wrap; }
.price-current { font-family: 'Nunito', sans-serif; font-size: 32px; font-weight: 800; color: var(--c-text); }
.price-old { font-size: 20px; color: var(--c-text-muted); text-decoration: line-through; }
.price-save { font-family: 'Nunito', sans-serif; background: var(--c-korting); color: #fff; padding: 5px 15px; border-radius: 20px; font-weight: 700; font-size: 14px; }
.hero-trust { display: flex; gap: 20px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; font-family: 'Nunito', sans-serif; }
.trust-pill { background-color: #fff; color: var(--c-text-sec); padding: 8px 16px; border-radius: var(--radius-lg); font-size: 15px; font-weight: 700; box-shadow: var(--shadow-sm); border: 1px solid var(--c-border); }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.hero-disclaimer-small { font-family: 'Nunito', sans-serif; font-size: 13px; color: var(--c-text-muted); font-style: italic; }

/* Stats */
.stats-strip { background-color: var(--c-bg-dark); padding: 50px 20px; color: #fff; font-family: 'Nunito', sans-serif; }
.stats-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; }
.stat-val { display: block; font-weight: 800; font-size: 36px; color: var(--c-accent); margin-bottom: 10px; }
.stat-lbl { font-size: 16px; font-weight: 600; opacity: 0.9; }

/* Sections general */
.section-h2 { font-family: 'Nunito', sans-serif; font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 30px; font-weight: 800; color: var(--c-text); }
.p-text { font-size: 18px; margin-bottom: 20px; line-height: 1.8; color: var(--c-text-sec); }
.scroll-reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.scroll-reveal.zichtbaar { opacity: 1; transform: translateY(0); }

/* Info Section */
.info-section { padding: 100px 20px; max-width: var(--container); margin: 0 auto; }
.info-split { display: flex; gap: 60px; align-items: center; }
.info-text { flex: 1; }
.info-visual { flex: 1; }
.info-img { width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }

@media(max-width: 768px) {
  .info-split { flex-direction: column; }
}

/* Features */
.features-section { padding: 100px 20px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-card { background: #fff; padding: 40px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: var(--transition); border-top: 4px solid var(--c-primary); }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-h3 { font-family: 'Nunito', sans-serif; font-size: 22px; margin-bottom: 15px; color: var(--c-primary-dk); font-weight: 800; }
.feature-p { font-size: 17px; color: var(--c-text-muted); }

/* Use cases */
.usecases-section { padding: 100px 20px; }
.usecase-item { background: var(--c-bg-alt); padding: 30px; border-radius: var(--radius-md); border-left: 4px solid var(--c-accent); }

/* Specs */
.specs-section { padding: 100px 20px; }
.table-wrapper { width: 100%; background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.specs-table { width: 100%; border-collapse: collapse; font-family: 'Nunito', sans-serif; }
.specs-table th, .specs-table td { padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--c-border); font-size: 16px; }
.specs-table th { background-color: var(--c-primary-lt); font-weight: 700; color: var(--c-primary-dk); width: 35%; }
.specs-table tr:last-child td { border-bottom: none; }

/* Testimonials */
.testimonials-section { padding: 100px 20px; }
.p-note { font-family: 'Nunito', sans-serif; font-size: 15px; color: var(--c-text-muted); margin-top: -20px; margin-bottom: 40px; font-style: italic; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testi-card { background: #fff; padding: 40px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--c-border); }
.stars { color: var(--c-accent); font-size: 24px; margin-bottom: 20px; letter-spacing: 2px; }
.testi-p { font-style: italic; margin-bottom: 25px; font-size: 18px; line-height: 1.6; }
.testi-author { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 16px; color: var(--c-primary-dk); }

/* About */
.about-section { padding: 100px 20px; }
.about-box { max-width: 800px; margin: 0 auto; background: var(--c-bg-alt); padding: 60px; border-radius: var(--radius-lg); text-align: center; }

/* Final CTA */
.final-cta-section { padding: 120px 20px; background-color: var(--c-bg-dark); color: #fff; }
.cta-h2 { font-family: 'Nunito', sans-serif; font-size: clamp(32px, 4vw, 48px); margin-bottom: 40px; font-weight: 800; color: #fff; }
.cta-note { font-family: 'Nunito', sans-serif; font-size: 14px; opacity: 0.7; margin-top: 20px; }

/* Footer */
.site-footer { background-color: #fff; padding: 80px 20px 20px; border-top: 1px solid var(--c-border); font-family: 'Nunito', sans-serif; }
.footer-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.footer-logo { font-weight: 800; color: var(--c-primary); font-size: 28px; display: block; margin-bottom: 10px; }
.footer-email { font-size: 16px; color: var(--c-text-muted); display: block; margin-bottom: 20px; font-weight: 600; }
.footer-tagline { font-size: 15px; color: var(--c-text-sec); }
.footer-col-title { font-weight: 800; margin-bottom: 20px; color: var(--c-text); font-size: 18px; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-link { font-size: 16px; color: var(--c-text-muted); font-weight: 600; }
.footer-link:hover { color: var(--c-primary); }
.footer-address { font-style: normal; font-size: 15px; color: var(--c-text-muted); line-height: 1.8; }
.footer-bottom { max-width: var(--container); margin: 0 auto; padding-top: 20px; border-top: 1px solid var(--c-border); text-align: center; font-size: 14px; color: var(--c-text-muted); display: flex; flex-direction: column; gap: 10px; }

@media(max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Preloader */
.preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--c-bg-alt); z-index: 9999; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 20px; transition: opacity 0.8s, visibility 0.8s; }
.pulse-circle { width: 60px; height: 60px; background-color: var(--c-primary); border-radius: 50%; animation: pulseAnim 1.5s infinite ease-in-out; }
.preloader-text { font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 700; color: var(--c-primary-dk); letter-spacing: 2px; text-transform: uppercase; }
@keyframes pulseAnim { 0% { transform: scale(0.8); opacity: 0.5; } 50% { transform: scale(1.2); opacity: 1; } 100% { transform: scale(0.8); opacity: 0.5; } }
body.geladen .preloader { opacity: 0; visibility: hidden; }

/* Cookie */
.cookie-popup { position: fixed; bottom: 20px; right: -400px; width: 340px; background: #fff; padding: 25px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); border-top: 4px solid var(--c-primary); z-index: 500; transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1); font-family: 'Nunito', sans-serif; }
.cookie-popup.show { right: 20px; }
.cookie-text { font-size: 15px; margin-bottom: 20px; color: var(--c-text-sec); font-weight: 600; }
.cookie-btn { background: var(--c-primary); color: #fff; border: none; padding: 12px; border-radius: var(--radius-sm); cursor: pointer; width: 100%; font-weight: 700; font-size: 16px; }

/* Review Page */
.review-article { max-width: 800px; margin: 60px auto; padding: 0 20px; }
.review-cat { font-family: 'Nunito', sans-serif; font-size: 13px; color: var(--c-primary); font-weight: 800; letter-spacing: 2px; margin-bottom: 20px; text-transform: uppercase; }
.review-h1 { font-family: 'Nunito', sans-serif; font-size: clamp(32px, 4vw, 48px); margin-bottom: 20px; line-height: 1.2; font-weight: 800; }
.review-meta { font-family: 'Nunito', sans-serif; font-size: 15px; color: var(--c-text-muted); margin-bottom: 40px; font-weight: 600; }
.review-hero-img { width: 100%; border-radius: var(--radius-md); margin-bottom: 40px; box-shadow: var(--shadow-md); }
.review-content h2 { font-family: 'Nunito', sans-serif; font-size: 32px; font-weight: 800; margin: 50px 0 25px; color: var(--c-text); }
.review-content p { font-size: 19px; margin-bottom: 25px; line-height: 1.8; }
.pros-cons { display: flex; gap: 40px; margin: 50px 0; }
.pros, .cons { flex: 1; background: #fff; padding: 40px; border-radius: var(--radius-md); border: 1px solid var(--c-border); box-shadow: var(--shadow-sm); }
.pros h3 { font-family: 'Nunito', sans-serif; color: var(--c-ok); margin-bottom: 25px; font-weight: 800; font-size: 24px; }
.cons h3 { font-family: 'Nunito', sans-serif; color: #D32F2F; margin-bottom: 25px; font-weight: 800; font-size: 24px; }
.pros ul, .cons ul { list-style: none; }
.pros li, .cons li { padding-left: 30px; position: relative; margin-bottom: 15px; font-size: 17px; font-family: 'Nunito', sans-serif; font-weight: 600; }
.pros li::before { content: '✓'; position: absolute; left: 0; color: var(--c-ok); font-weight: 900; font-size: 18px; }
.cons li::before { content: '×'; position: absolute; left: 0; color: #D32F2F; font-weight: 900; font-size: 20px; line-height: 1; }
.final-verdict { background: var(--c-bg-alt); padding: 50px; border-radius: var(--radius-md); margin: 60px 0; text-align: center; border-bottom: 4px solid var(--c-primary); }
.final-verdict h2 { margin: 0 0 20px 0 !important; }

@media(max-width: 768px) {
  .pros-cons { flex-direction: column; }
}

/* FAQ Accordion */
.faq-container { margin: 50px 0; }
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-btn { width: 100%; text-align: left; padding: 25px 0; background: none; border: none; font-size: 20px; font-family: 'Nunito', sans-serif; font-weight: 700; cursor: pointer; color: var(--c-text-sec); display: flex; justify-content: space-between; align-items: center; }
.faq-btn::after { content: '+'; font-size: 28px; color: var(--c-primary); transition: transform 0.3s; font-weight: 300; }
.faq-item.active .faq-btn::after { transform: rotate(45deg); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-content p { font-size: 17px; color: var(--c-text-muted); padding-bottom: 25px; line-height: 1.7; }

/* Contact Form */
.contact-section { padding: 100px 20px; }
.contact-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 3fr 2fr; gap: 60px; }
.contact-form-wrapper { background: #fff; padding: 50px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; font-size: 15px; font-weight: 700; margin-bottom: 10px; color: var(--c-text-sec); font-family: 'Nunito', sans-serif; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 15px; border: 2px solid var(--c-border); border-radius: var(--radius-sm); font-family: 'Lora', serif; font-size: 16px; outline: none; transition: border 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--c-primary); }
.contact-info-wrapper { padding: 40px 0; }
.info-h3 { font-family: 'Nunito', sans-serif; font-size: 24px; margin-bottom: 30px; font-weight: 800; }
.info-row { font-size: 17px; margin-bottom: 20px; color: var(--c-text-muted); }
.info-row strong { color: var(--c-text-sec); }

@media(max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Order Page */
.order-section { padding: 80px 20px; }
.order-grid { display: grid; grid-template-columns: 55% 40%; gap: 5%; align-items: start; }
.gallery { margin-bottom: 40px; }
.gallery-main { width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); aspect-ratio: 1; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 15px; margin-top: 20px; overflow-x: auto; padding-bottom: 10px; }
.thumb { width: 80px; height: 80px; border-radius: var(--radius-sm); cursor: pointer; border: 3px solid transparent; opacity: 0.5; transition: var(--transition); object-fit: cover; flex-shrink: 0; }
.thumb.active, .thumb:hover { border-color: var(--c-primary); opacity: 1; }
.order-title { font-family: 'Nunito', sans-serif; font-size: 36px; margin-bottom: 25px; font-weight: 800; line-height: 1.2; }
.order-desc { font-size: 18px; margin-bottom: 30px; line-height: 1.8; }
.order-h3 { font-family: 'Nunito', sans-serif; font-size: 24px; margin: 50px 0 25px; border-bottom: 2px solid var(--c-bg-alt); padding-bottom: 15px; font-weight: 800; }
.order-list { list-style: none; margin-bottom: 30px; }
.order-list li { margin-bottom: 15px; font-size: 17px; color: var(--c-text-sec); padding-left: 30px; position: relative; }
.order-list li::before { content: '•'; color: var(--c-primary); font-size: 24px; position: absolute; left: 0; top: -5px; }

.sticky-card { position: sticky; top: 120px; background: #fff; padding: 50px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); border-top: 6px solid var(--c-primary); }
.sticky-title { font-family: 'Nunito', sans-serif; font-size: 22px; margin-bottom: 20px; color: var(--c-text-sec); font-weight: 800; }
.sticky-price { font-family: 'Nunito', sans-serif; font-size: 48px; font-weight: 800; color: var(--c-text); margin-bottom: 5px; display: inline-block; }
.sticky-disclosure { font-size: 13px; text-align: center; color: var(--c-text-muted); margin-top: 25px; font-family: 'Nunito', sans-serif; }
.trust-badges { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.badge { display: flex; align-items: center; gap: 15px; font-size: 16px; font-weight: 700; color: var(--c-text-sec); font-family: 'Nunito', sans-serif; }

@media(max-width: 1024px) {
  .order-grid { grid-template-columns: 1fr; }
  .sticky-card { position: relative; top: 0; margin-top: 50px; }
}
