@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Sora:wght@300;400;600;700;800&display=swap');

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

:root {
  --c-bg:          #F7FBF7;
  --c-bg-alt:      #EDF5ED;
  --c-bg-card:     #FFFFFF;
  --c-bg-dark:     #0E2A18;
  --c-primary:     #1E7B3A;
  --c-primary-dk:  #125A28;
  --c-primary-lt:  #E5F5EB;
  --c-accent:      #F5A623;
  --c-accent-lt:   #FEF3E0;
  --c-text:        #0E2A18;
  --c-text-sec:    #1C4428;
  --c-text-muted:  #6A8A72;
  --c-border:      #C8E0CC;
  --c-cta:         #1E7B3A;
  --c-cta-hov:     #125A28;
  --c-ok:          #1E7B3A;
  --c-zon:         #F5A623;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(30,123,58,0.07);
  --shadow-md:  0 4px 24px rgba(30,123,58,0.11);
  --shadow-lg:  0 8px 48px rgba(30,123,58,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: 16px 32px; border-radius: var(--radius-sm); font-weight: 700; transition: var(--transition); text-align: center; cursor: pointer; }
.btn-primair { background-color: var(--c-cta); color: #fff; }
.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%; }

/* Disclosure */
.disclosure-bar { background-color: var(--c-bg-alt); color: var(--c-text-muted); font-size: 11px; text-align: center; padding: 10px; z-index: 900; position: relative; }

/* Header */
.site-header { position: sticky; top: 0; background-color: var(--c-bg); 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: 'Sora', sans-serif; font-weight: 700; color: var(--c-primary); font-size: 24px; }
.nav-list { display: flex; gap: 30px; list-style: none; align-items: center; }
.nav-link { font-weight: 500; font-size: 15px; }
.nav-link:hover { color: var(--c-primary); }
.nav-cta { background-color: var(--c-primary); color: #fff; padding: 10px 20px; border-radius: var(--radius-sm); font-weight: 600; font-size: 14px; }

/* Mobile Nav */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger-line { width: 25px; height: 3px; background-color: var(--c-text); transition: var(--transition); }
.mobile-nav-overlay { position: fixed; top: 0; right: -300px; width: 300px; height: 100vh; background-color: var(--c-bg-card); 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(14,42,24,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: 30px; cursor: pointer; color: var(--c-text); }
.mobile-nav-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.mobile-nav-link { font-size: 18px; font-weight: 600; }
.mobile-nav-cta { background-color: var(--c-primary); color: #fff; padding: 12px; text-align: center; border-radius: var(--radius-sm); margin-top: 20px; font-weight: 700; }

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

/* Hero */
.hero-split { display: flex; min-height: 80vh; }
.hero-content-col { width: 55%; background-color: var(--c-bg-alt); display: flex; align-items: center; justify-content: center; padding: 60px 40px; }
.hero-content-inner { max-width: 600px; }
.hero-label { font-size: 11px; text-transform: uppercase; color: var(--c-accent); font-weight: 700; letter-spacing: 1px; margin-bottom: 20px; }
.hero-title { font-family: 'Sora', sans-serif; font-weight: 800; font-size: clamp(32px, 4vw, 48px); margin-bottom: 20px; line-height: 1.2; color: var(--c-text); }
.hero-sub { font-size: 18px; font-weight: 300; margin-bottom: 30px; }
.hero-price { font-size: 24px; font-weight: 600; color: var(--c-accent); margin-bottom: 20px; }
.hero-trust { display: flex; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
.trust-pill { background-color: var(--c-primary-lt); color: var(--c-primary-dk); padding: 5px 12px; border-radius: 20px; font-size: 13px; font-weight: 600; }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-img-col { width: 45%; background-color: var(--c-bg-card); position: relative; display: flex; align-items: center; justify-content: center; }
.hero-img-main { width: 100%; height: 100%; object-fit: cover; box-shadow: -20px 0 50px rgba(30,123,58,0.1); }

@media(max-width: 1024px) {
  .hero-split { flex-direction: column; }
  .hero-content-col, .hero-img-col { width: 100%; }
  .hero-img-col { min-height: 400px; }
}

/* Stats */
.stats-strip { background-color: var(--c-bg-dark); padding: 40px 20px; color: #fff; }
.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-family: 'Sora', sans-serif; font-weight: 700; font-size: 32px; color: var(--c-accent); margin-bottom: 10px; }
.stat-lbl { font-size: 14px; opacity: 0.8; }
.stat-disclaimer { max-width: var(--container); margin: 30px auto 0; text-align: center; font-size: 12px; opacity: 0.5; }

/* Sections general */
.section-h2 { font-family: 'Sora', sans-serif; font-size: clamp(28px, 3vw, 36px); margin-bottom: 40px; font-weight: 700; }
.p-text { font-size: 17px; margin-bottom: 20px; }
.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-lg); 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: var(--c-bg-card); 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: 'Sora', sans-serif; font-size: 20px; margin-bottom: 15px; color: var(--c-primary-dk); }
.feature-p { font-size: 15px; color: var(--c-text-muted); }

/* Specs */
.specs-section { padding: 100px 20px; }
.table-wrapper { max-width: 800px; margin: 0 auto; background: var(--c-bg-card); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table th, .specs-table td { padding: 15px 20px; text-align: left; border-bottom: 1px solid var(--c-border); }
.specs-table th { background-color: var(--c-bg-alt); font-weight: 600; }
.specs-table tr:last-child td { border-bottom: none; }

/* Rules */
.rules-section { padding: 100px 20px; }
.rules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.rule-card { background: var(--c-bg-card); padding: 30px; border-radius: var(--radius-md); border-left: 4px solid var(--c-accent); box-shadow: var(--shadow-sm); }
.rule-h3 { font-family: 'Sora', sans-serif; font-size: 18px; margin-bottom: 10px; }
.rule-p { font-size: 15px; color: var(--c-text-muted); }

/* Steps */
.steps-section { padding: 100px 20px; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.step-card { text-align: center; }
.step-num { width: 60px; height: 60px; background: var(--c-primary); color: #fff; font-size: 24px; font-family: 'Sora', sans-serif; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step-h3 { font-family: 'Sora', sans-serif; font-size: 18px; margin-bottom: 15px; }
.step-p { font-size: 15px; color: var(--c-text-muted); }

/* Testimonials */
.testimonials-section { padding: 100px 20px; }
.p-note { font-size: 14px; color: var(--c-text-muted); margin-top: -30px; margin-bottom: 40px; font-style: italic; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testi-card { background: var(--c-bg-card); padding: 30px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--c-border); }
.stars { color: var(--c-accent); font-size: 20px; margin-bottom: 15px; letter-spacing: 2px; }
.testi-p { font-style: italic; margin-bottom: 20px; font-size: 15px; }
.testi-author { font-weight: 600; font-size: 14px; 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: 100px 20px; background-color: var(--c-bg-dark); color: #fff; }
.cta-h2 { font-family: 'Sora', sans-serif; font-size: clamp(32px, 4vw, 48px); margin-bottom: 40px; }
.cta-note { font-size: 12px; opacity: 0.6; margin-top: 20px; }

/* Footer */
.site-footer { background-color: #fff; padding: 80px 20px 20px; border-top: 1px solid var(--c-border); }
.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-family: 'Sora', sans-serif; font-weight: 700; color: var(--c-primary); font-size: 24px; display: block; margin-bottom: 10px; }
.footer-email { font-size: 15px; color: var(--c-text-muted); display: block; margin-bottom: 20px; }
.footer-tagline { font-size: 14px; opacity: 0.8; }
.footer-col-title { font-weight: 600; margin-bottom: 20px; color: var(--c-text-sec); }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 14px; color: var(--c-text-muted); }
.footer-link:hover { color: var(--c-primary); }
.footer-address { font-style: normal; font-size: 14px; 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: 13px; 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: #fff; z-index: 9999; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 20px; transition: opacity 0.5s, visibility 0.5s; }
.preloader-bar-container { width: 200px; height: 4px; background: var(--c-bg-alt); border-radius: 4px; overflow: hidden; }
.preloader-bar { width: 0%; height: 100%; background: var(--c-accent); animation: preloaderFill 3s ease forwards; }
.preloader-text { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--c-text-muted); letter-spacing: 2px; text-transform: uppercase; }
@keyframes preloaderFill { 0% { width: 0%; } 100% { width: 100%; } }
body.geladen .preloader { opacity: 0; visibility: hidden; }

/* Cookie */
.cookie-popup { position: fixed; bottom: 20px; right: -400px; width: 300px; background: #fff; padding: 20px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); border-left: 3px solid var(--c-primary); z-index: 500; transition: right 0.5s ease; }
.cookie-popup.show { right: 20px; }
.cookie-text { font-size: 13px; margin-bottom: 15px; color: var(--c-text-sec); }
.cookie-btn { background: var(--c-primary); color: #fff; border: none; padding: 8px 16px; border-radius: var(--radius-sm); cursor: pointer; width: 100%; font-weight: 600; }

/* Review Page */
.review-article { max-width: 800px; margin: 60px auto; padding: 0 20px; }
.review-cat { font-size: 12px; color: var(--c-accent); font-weight: 700; letter-spacing: 1px; margin-bottom: 20px; }
.review-h1 { font-family: 'Sora', sans-serif; font-size: clamp(32px, 4vw, 48px); margin-bottom: 20px; line-height: 1.2; }
.review-meta { font-size: 14px; color: var(--c-text-muted); margin-bottom: 40px; }
.review-hero-img { width: 100%; border-radius: var(--radius-lg); margin-bottom: 60px; box-shadow: var(--shadow-md); }
.review-content h2 { font-family: 'Sora', sans-serif; font-size: 28px; margin: 40px 0 20px; }
.review-content p { font-size: 17px; margin-bottom: 20px; line-height: 1.8; }
.pros-cons { display: flex; gap: 30px; margin: 40px 0; }
.pros, .cons { flex: 1; background: var(--c-bg-card); padding: 30px; border-radius: var(--radius-md); border: 1px solid var(--c-border); }
.pros h3 { color: var(--c-primary); margin-bottom: 20px; }
.cons h3 { color: #d32f2f; margin-bottom: 20px; }
.pros ul, .cons ul { list-style: none; }
.pros li, .cons li { padding-left: 25px; position: relative; margin-bottom: 10px; font-size: 15px; }
.pros li::before { content: '✓'; position: absolute; left: 0; color: var(--c-primary); font-weight: bold; }
.cons li::before { content: '×'; position: absolute; left: 0; color: #d32f2f; font-weight: bold; font-size: 18px; line-height: 1; }
.final-verdict { background: var(--c-bg-alt); padding: 40px; border-radius: var(--radius-lg); margin: 60px 0; text-align: center; }

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

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

/* 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: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--c-border); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--c-text-sec); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid var(--c-border); border-radius: var(--radius-sm); font-family: 'Inter', sans-serif; font-size: 15px; 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: 'Sora', sans-serif; font-size: 22px; margin-bottom: 30px; }
.info-row { font-size: 15px; margin-bottom: 15px; 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: 60px 20px; }
.order-grid { display: grid; grid-template-columns: 60% 35%; gap: 5%; align-items: start; }
.gallery { margin-bottom: 40px; }
.gallery-main { width: 100%; border-radius: var(--radius-md); border: 1px solid var(--c-border); aspect-ratio: 1; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 15px; margin-top: 15px; }
.thumb { width: 80px; height: 80px; border-radius: var(--radius-sm); cursor: pointer; border: 2px solid transparent; opacity: 0.6; transition: var(--transition); object-fit: cover; }
.thumb.active, .thumb:hover { border-color: var(--c-primary); opacity: 1; }
.order-title { font-family: 'Sora', sans-serif; font-size: 32px; margin-bottom: 20px; }
.order-desc { font-size: 16px; margin-bottom: 30px; }
.order-h3 { font-family: 'Sora', sans-serif; font-size: 20px; margin: 40px 0 20px; border-bottom: 1px solid var(--c-border); padding-bottom: 10px; }
.order-list { list-style: inside square; margin-bottom: 30px; }
.order-list li { margin-bottom: 10px; font-size: 15px; color: var(--c-text-muted); }

.sticky-card { position: sticky; top: 100px; background: #fff; padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--c-border); }
.sticky-title { font-family: 'Sora', sans-serif; font-size: 20px; margin-bottom: 15px; color: var(--c-text-muted); }
.sticky-price { font-family: 'Sora', sans-serif; font-size: 42px; font-weight: 800; color: var(--c-text); margin-bottom: 10px; display: flex; align-items: baseline; gap: 10px; }
.price-tax { font-size: 13px; font-weight: 400; color: var(--c-text-muted); }
.sticky-disclosure { font-size: 11px; text-align: center; color: var(--c-text-muted); margin-top: 20px; }
.trust-badges { margin-top: 30px; display: flex; flex-direction: column; gap: 15px; }
.badge { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--c-text-sec); }

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