@font-face {
    font-display: swap;
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../../site-inc/fonts/pt-sans-v18-latin-regular.woff2') format('woff2');
}
/* pt-sans-italic - latin */
@font-face {
    font-display: swap;
    font-family: 'PT Sans';
    font-style: italic;
    font-weight: 400;
    src: url('../../site-inc/fonts/pt-sans-v18-latin-italic.woff2') format('woff2');
}
/* pt-sans-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../../site-inc/fonts/pt-sans-v18-latin-700.woff2') format('woff2');
}
/* pt-sans-700italic - latin */
@font-face {
    font-display: swap;
    font-family: 'PT Sans';
    font-style: italic;
    font-weight: 700;
    src: url('../../site-inc/fonts/pt-sans-v18-latin-700italic.woff2') format('woff2');
}

/* ------------------ ALGEMEEN ------------------------------ */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --primary: #50b8a2; --primary-dark: #3d9684; --beige: #f5e6d3; --beige-dark: #e8d4bb; --dark: #2c3e50; --light: #fff; }
/*body { padding: 40px; font-weight: 400; font-style: normal; line-height: 1.6; color: #333; background-color: #EAE7DC; }*/
body { font-family: 'PT Sans', sans-serif;  line-height: 1.6; color: var(--dark); overflow-x: hidden; }

._bgforcer { clear: both; height: 0; overflow: hidden; margin-top: -1px; }

p { margin-bottom: 1rem; }
a { color: #be655d; font-weight: normal; text-decoration: none; }
a:hover { color: #399c7d; text-decoration: none; }
hr { display: block; margin: 1.4rem 0; padding: 0; height: 6px; background: url('../../site-media/hr.png') repeat-x 0 0; border: 0; opacity: 0.6; }
.hidden { display: none; }
.show { display: block; }

.hero {background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);color: var(--light);padding: 40px 20px 80px;text-align: center;position: relative;overflow: hidden;}
/* Grote bal rechts */
.hero::before { content: ''; position: absolute; top: -50%; right: -12%; width: 500px; height: 500px; background: rgba(255, 255, 255, .1); border-radius: 50%; animation: float 20s infinite ease-in-out; }
/* Kleinere bal links */
.hero::after { content: ''; position: absolute; top: -20%; left: -8%; width: 280px; height: 280px; background: rgba(255, 255, 255, .08); border-radius: 50%; animation: float2 16s infinite ease-in-out reverse; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50%      { transform: translate(-50px, 50px) rotate(180deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50%      { transform: translate(60px, -40px) rotate(-120deg); }
}


.container { max-width: 1200px; margin: 0 auto; padding: 0 5px; position: relative; z-index: 1; }
.logo { font-size: 1.8rem; font-weight: bold; margin-bottom: 10px; opacity: 0; animation: fadeInDown .8s forwards;}
h1 { font-size: 2.5rem; line-height: 3.2rem; margin-bottom: 20px; opacity: 0; animation: fadeInUp .8s .2s forwards;  }

.subtitle { font-size: 1.2rem; margin-bottom: 40px; opacity: 0; animation: fadeInUp .8s .4s forwards; }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }


/* Login Bar Styles */
/* =============================================
   MOBILE FIRST LOGIN BAR + COOKIE CONSENT
============================================= */

/* Variabelen (verondersteld al gedefinieerd elders) */
/* :root {
    --dark: #0f171e;
    --primary: #50b8a2;
    --primary-dark: #3d8f7e;
    --beige: #f5e6d3;
    --light: #ffffff;
} */

.login-form input[type="text"],
.login-form input[type="email"],
.login-form input[type="password"],
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
textarea {
    font-size: 1rem;          /* of 1rem als je root font 16px hebt */
    /* eventueel iets groter op mobiel */
}
.password-field {position: relative; margin: 0 0 0.2rem 0;}
.toggle-password { position: absolute; right: 8px; top: 5px; background: none; border: none; cursor: pointer; padding: 5px; color: #444; font-size: 1rem; }
.toggle-password:hover { color: #333; }


.login-bar { background: linear-gradient(135deg, var(--dark) 0%, #1a252f 100%); padding: 20px 16px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: relative; z-index: 1000; }
.login-bar .container { display: flex; flex-direction: column; gap: 12px; align-items: stretch; min-height: 44px; }
.login-bar-left { display: flex; align-items: center; justify-content: center; }
.login-bar-brand { color: var(--beige); font-weight: bold; font-size: 1.1rem; text-decoration: none; transition: color 0.3s ease; }
.login-bar-brand:hover { color: var(--primary); }
.login-bar-right { display: flex; flex-direction: column; align-items: center; gap: 12px; }

.login-form { display: flex; flex-direction: column; gap: 2px; width: 100%; max-width: 360px; margin: 0 auto; }
.login-form input[type="text"],
.login-form input[type="email"],
.login-form input[type="password"] {background: rgba(255,255,255,0.1);border: 1px solid rgba(255,255,255,0.2);color: var(--light);padding: 7px 28px 10px 8px;border-radius: 6px;font-size: 1rem;transition: all 0.3s ease;width: 100%;}
.login-form input::placeholder { color: rgba(255,255,255,0.5); }
.login-form input:focus { background: rgba(255,255,255,0.15); border-color: var(--primary); box-shadow: 0 0 0 2px rgba(80, 184, 162, 0.2); outline: none; }
.login-btn { background: var(--primary); color: var(--light); border: none; padding: 10px 24px; border-radius: 6px; font-weight: bold; cursor: pointer; transition: all 0.3s ease; font-size: 0.95rem; height: 37px; }
.login-btn:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 10px rgba(80, 184, 162, 0.3); }

.user-info { display: none; align-items: center; gap: 12px; color: var(--beige); font-size: 0.95rem; }
.user-info.active { display: flex; justify-content: center; width: 100%; }
.user-avatar {width: 26px; height: 36px;/* border-radius: 50%; *//* background: var(--primary); */display: flex;align-items: center;justify-content: center;font-weight: bold;color: var(--light);font-size: 1.4rem;}

.logout-btn { background: rgba(255,255,255,0.1); color: var(--beige); border: 1px solid rgba(255,255,255,0.2); padding: 8px 16px; border-radius: 6px; font-size: 0.9rem; cursor: pointer; transition: all 0.3s ease; }
.logout-btn:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }

/* COOKIE CONSENT – MOBILE FIRST */
.cookie-consent { position: fixed; bottom: 0; left: 0; right: 0; background: linear-gradient(135deg, var(--dark) 0%, #1a252f 100%); color: var(--light); padding: 16px; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); transform: translateY(100%); transition: transform 0.4s ease; z-index: 9999; }
.cookie-consent.show { transform: translateY(0); }
.cookie-consent .container { display: flex; flex-direction: column; gap: 16px; align-items: stretch; }

.cookie-text { font-size: 0.95rem; line-height: 1.5; color: rgba(245, 230, 211, 0.95); }
.cookie-text p { margin: 0; }
.cookie-text a { color: var(--primary); text-decoration: underline; }
.cookie-text a:hover { color: var(--beige); }
.cookie-buttons { display: flex; flex-direction: column; gap: 10px; }

.cookie-btn { padding: 12px 24px; border-radius: 8px; font-weight: bold; cursor: pointer; transition: all 0.3s ease; border: none; font-size: 0.95rem; text-align: center; }
.cookie-btn-accept { background: var(--primary); color: var(--light); }
.cookie-btn-accept:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(80, 184, 162, 0.3); }
.cookie-btn-decline { background: rgba(255,255,255,0.1); color: var(--beige); border: 1px solid rgba(255,255,255,0.2); }
.cookie-btn-decline:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }
.cookie-btn-settings { background: transparent; color: var(--beige); border: 1px solid rgba(245, 230, 211, 0.3); }
.cookie-btn-settings:hover { background: rgba(245, 230, 211, 0.1); border-color: var(--beige); }

.cta-button { display: inline-block; background: var(--beige); color: var(--dark); padding: 16px 40px; border-radius: 50px; text-decoration: none; font-weight: bold; font-size: 1.1rem; transition: all .3s ease; box-shadow: 0 4px 15px rgba(0,0,0,.2); opacity: 0; animation: fadeInUp .8s .6s forwards; }
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.3); background: var(--beige-dark); }
.cta-secondary { background: var(--light); color: var(--primary); border: 2px solid var(--primary); }
.cta-secondary:hover { background: var(--primary); color: var(--light); }

.features { padding: 60px 20px; background: var(--beige); }
.features h2 { text-align: center; font-size: 2rem; margin-bottom: 50px; color: var(--dark); }
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
.feature-card { background: var(--light); padding: 30px; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,.08); transition: transform .3s ease, box-shadow .3s ease; opacity: 0; transform: translateY(30px); }
.feature-card.visible { animation: slideUp .6s forwards; }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(80, 184, 162, .2); }
.feature-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 20px; color: var(--light); }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--dark); }
.feature-card p { color: #666; line-height: 1.8; }

.pricing { padding: 60px 20px; background: var(--light); text-align: center; }
.pricing h2 { font-size: 2rem; margin-bottom: 50px; }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 30px; max-width: 900px; margin: 0 auto; }

.price-box { background: linear-gradient(135deg, var(--beige), var(--beige-dark)); padding: 40px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,.1); position: relative; transition: transform .3s ease; }
.price-box:hover { transform: translateY(-5px); }
.price-box-premium { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--light); border: 3px solid var(--beige); }
.price-box-premium h3, .price-box-premium .price { color: var(--light); }
.price-box-premium .price-features li { color: rgba(255,255,255,.95); }
.price-box-premium .price-features li::before { color: var(--beige); }
.recommended-badge { position: absolute; top: -15px; right: 30px; background: var(--beige); color: var(--primary-dark); padding: 8px 20px; border-radius: 20px; font-weight: bold; font-size: .9rem; box-shadow: 0 4px 10px rgba(0,0,0,.2); }
.price { font-size: 3rem; font-weight: bold; color: var(--primary); margin: 20px 0; }
.price span { display: block; }
.price-features { list-style: none; margin: 30px 0; text-align: left; }
.price-features li { padding: 10px 0; padding-left: 30px; position: relative; }
.price-features li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: bold; font-size: 1.2rem; }

.footer { background: var(--dark); color: var(--light); padding: 40px 20px 20px 20px; text-align: center; }

.language-selector { display: flex; gap: 15px; justify-content: center; margin-top: 20px; }
.lang-btn { background: rgba(255,255,255,.1); border: 2px solid rgba(255,255,255,.3); color: var(--light); padding: 8px 20px; border-radius: 20px; cursor: pointer; transition: all .3s ease; }
.lang-btn:hover, .lang-btn.active { background: var(--beige); color: var(--dark); border-color: var(--beige); }

.app-preview { margin: 40px auto; max-width: 800px; opacity: 0; animation: fadeInUp .8s .8s forwards; display: flex; gap: 30px; justify-content: center; align-items: flex-start; flex-wrap: wrap; }
.device-frame { flex: 1; min-width: 250px; }
.browser-frame {background: var(--dark);border-radius: 16px;padding: 15px;box-shadow: 0 20px 60px rgba(0,0,0,.3);max-width: 450px;}
.browser-frame { max-width: 660px; }
.browser-header {background: #e8e8e8;border-radius: 10px 10px 0 0;padding: 8px 12px;display: flex;align-items: center;gap: 6px;}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; }
.browser-dot:nth-child(2) { background: #ffbd2e; }
.browser-dot:nth-child(3) { background: #28ca42; }
.browser-screen {background: var(--light);padding: 30px 20px;display: flex;flex-direction: column;align-items: center;justify-content: center;min-height: 300px;border-radius: 0 0 10px 10px;}
.phone-frame { background: var(--dark); border-radius: 40px; padding: 15px; box-shadow: 0 20px 60px rgba(0,0,0,.3); max-width: 280px; }
.phone-screen { background: var(--light); border-radius: 30px; padding: 20px; aspect-ratio: 9/16; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.screen-icon { font-size: 3rem; margin-bottom: 15px; color: var(--primary); }
.screen-text { color: var(--primary); font-weight: bold; margin-top: 10px; font-size: 1.3rem; }

.info-section { padding: 80px 10px; background: var(--light); }
    .info-section ul { margin-left: 20px; margin-bottom:  20px; }
    .info-section li { font-size: 1.1rem; color: #666; padding: 2px 0; }
.info-content { max-width: 840px; margin: 0 auto; text-align: center; }
.info-content h2 { font-size: 2.2rem; margin-bottom: 30px; color: var(--dark); }
.info-content p { font-size: 1.1rem; line-height: 1.8; color: #666; margin-bottom: 20px; }
.info-content p:last-child { margin-bottom: 0; }

.banner-section {background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);/* min-height: 400px; *//* display: flex; */align-items: center;justify-content: center;position: relative;overflow: hidden;}
.banner-content {position: relative;z-index: 2;/* text-align: center; */color: var(--light);/* padding: 40px 20px; */}
.banner-content h2 { font-size: 2.5rem; margin-bottom: 20px; }
.banner-content p { font-size: 1.3rem; opacity: 0.95; }
.banner-image { position: absolute; width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }

.footer ul { list-style: none; display: grid; grid-template-columns: 1fr; gap: 0.5rem; margin-bottom: 20px; }
.footer li { display: flex; flex-direction: column; align-items: center; }
.footer li a { text-decoration: none; color: #FFF; }
.footer li a:hover { color: #be655d; }
.rights { font-size: 80%; color: #aecdbf; }

/* ------------------ PLAATJES ------------------------------ */
img.imgleft { float: left; margin-left: 1px; margin-right: 18px; margin-top: 5px; margin-bottom: 10px; border: 7px solid white;  outline: 1px solid #e9e9e9; clear: left }
img.imgright { float: right; margin-right: 1px; margin-left: 18px; margin-top: 5px; margin-bottom: 10px; border: 7px solid white; outline: 1px solid #e9e9e9; clear: right }
img.imgleftno { float: left; margin-left: 1px; margin-right: 18px; margin-top: 5px; margin-bottom: 5px; clear: left; -webkit-box-shadow: none ; -moz-box-shadow: none; box-shadow: none; border: none; }
img.imgrightno { float: right; margin-right: 1px; margin-left: 18px; margin-top: 5px; margin-bottom: 5px; clear: right; -webkit-box-shadow: none ; -moz-box-shadow: none; box-shadow: none; border: none; }
img.imgfancy { margin-left: 1px; margin-right: 1px; margin-top: 5px; margin-bottom: 10px; border: 7px solid white; outline: 1px solid #e9e9e9; max-width: 95% !important; height: auto !important; }


.button h3 { font-size: 2rem; font-weight: bold; color: #fff; font-family: 'Amatic SC', Tahoma; text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); }

/* ------------------ FORMULIEREN ------------------------------ */
input[type=text], input[type=email], input[type=tel], input[type=password], input[type=date], textarea, select { font-family: 'PT Sans', sans-serif; width: 100%; max-width: 550px; margin: 1px 0 12px 0; border-radius: 4px; padding-left: 12px; font-size: 14px; font-weight: normal; border: 1px solid rgb(213, 209, 193); transition: border-color 150ms ease-in-out 0s; outline: none; color: rgb(33, 49, 60); background-color: rgb(255, 255, 255); padding-right: 12px; }
input[type=text], input[type=email], input[type=tel], input[type=password], input[type=date], select { height: 35px; margin-right: 6px }
input[type=text]:hover, input[type=email]:hover, input[type=tel]:hover, input[type=password]:hover, input[type=date]:hover, textarea:hover, select:hover { box-shadow: rgb(231 238 236) 0px 0px 0px 3px; }
input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=password]:focus, input[type=date]:focus, textarea:focus, select:focus { box-shadow: rgb(199 127 120) 0px 0px 4px 0px; border: 1px solid rgb(199, 127, 120);}
input[type="text"]:disabled { background-color: #f5f5f5; color: #888; border: 1px solid #ccc; cursor: not-allowed; opacity: 0.6; }
textarea { padding: 8px; margin-bottom: 4px; }
label { color: #4ead7e; }
.potverdorie { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* .naar-betaling {margin-top: 20px;padding: 16px 35px;background-color: #dc2222;border-radius: 10px;border: none;color: #FFF;font-size: 2rem;line-height: 1.5rem;text-shadow: 1px 1px 2px rgba(0,0,0,0.2);} */

.download-btn, #checkout-button, .naar-betaling, .contactformulier .btn, .action_btn { width: 100%; cursor: pointer; font-weight: bold;font-size: 1.7rem;letter-spacing: 0.03rem; margin: 20px 0; padding: 0.8rem 1rem; line-height: 2rem;text-align: center; border: 2px dashed #93b5a4; border-radius: 8px; background-color: #EAE7DC; color: #222; font-family: 'Amatic SC', Tahoma;text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);}
.download-btn:hover, #checkout-button:hover, .naar-betaling:hover, .contactformulier .btn:hover, .action_btn:hover { border: 2px solid #b5a193;  }
.action_btn { display: block; }
.action_btn img { position: relative; top: 3px; margin-right: 6px;}

/* ---- AANMELDFORMULIER ----- */
#aanmeldform {text-align: left; width: 552px; margin:  0 auto;}

.contactformulier { width: 100%; min-width: 200px; clear: both; line-height: 1.5em;}
.contactformulier .row { overflow: hidden;}
.contactformulier label { font-weight: normal; line-height: 1.8em; display: block; width: 100%; clear: both;  }
.contactformulier input.rechts { text-align: right;}
.contactformulier textarea { position: relative; width: 93%; min-width: 214px; height: 165px; top: -1px;}
.contactformulier .small { width: 100%; max-width: 200px;}
.contactformulier .medium {  }
.contactformulier .large { width: 100%; min-width: 214px; margin-left: 1px; max-width: 99%; }
.contactformulier img { border: 1px solid #DADADA; margin-bottom: 5px; float: left; width: auto; margin-right: 8px;}
.contactformulier .errorField input[type=text] { border-color: deeppink; }

.contactformulier .errorField label { color: #da6f6f; }
.contactformulier .errorField input[type=text], .contactformulier .errorField input[type=password] { border-color: #da6f6f; background-color: #ffe9e9; }
.contactformulier .send-btn, #checkout-button { background-color: #4ead7e; color: white; padding: 12px 30px; font-size: 1rem; border: none; border-radius: 6px; cursor: pointer; margin-top: 12px; }
.contactformulier .send-btn:hover, #checkout-button { background-color: #3f9168; }
.contactformulier .potverdorie { display: none; }
.warning, .errorText { border: 1px solid #da6f6f; background-color: #ffe9e9; padding: 20px; border-radius: 10px;  margin-bottom: 20px; color: #b65454 }
.warning p, .errorText p, .success p { font-size: 0.95rem !important; }
.success { border: 1px solid #9ada6f; background-color: #e9f1e2; padding: 20px; border-radius: 10px;  margin-bottom: 20px; color: #2b792b; }

.gegevenscheck { text-align: left; max-width: 600px; margin: 0 auto;}

/* ----- BANNER ---- */
#banner {width: 100%;height: 324px;background: #49ab96;overflow: hidden;position: relative;border-radius: 8px;}
.word { position: absolute; white-space: nowrap; font-family: 'PT Sans', sans-serif; font-weight: 500; will-change: transform; }

.info-content { max-width: 1100px; margin: 0 auto; text-align: left; }
/*.info-content h1 { column-span: all; text-align: center; margin-bottom: 2rem; }*/
/*.info-content h2 { break-before: avoid; break-after: avoid; color: var(--dark); margin-bottom: 0.8rem; } */
.info-content h2 { column-span: all; text-align: center; margin-bottom: 2rem; }
.info-content h3 { break-before: avoid; break-after: avoid; }
.info-content h2,
.info-content h3,
.info-content ul {
    break-inside: avoid;
}

/* ------------------------------------------------ */
@media (min-width: 375px) {

}

/* ------------------------------------------------ */
@media (min-width: 440px) {
    .container { padding: 0 10px; }
}

/* ------------------------------------------------ */
@media (min-width: 768px) {
    h1 {font-size: 3.2rem; line-height: 3.8rem; }
    .container { padding: 0 20px; }
    .info-section { padding: 80px 20px; }
    .info-content { columns: 2; column-gap: 3rem; }

    .login-bar { padding: 4px 0 2px 0; }

    .login-bar .container { max-width: 98% !important; flex-direction: row; justify-content: space-between; align-items: center; gap: 20px; }
    .login-bar-left { justify-content: flex-start; }
    .login-bar-right { flex-direction: row; align-items: center; gap: 15px; justify-content: flex-end; }
    .login-form {flex-direction: row;gap: 10px;width: auto;max-width: none;margin: 5px 0 -3px 0;}

    .login-form input[type="text"],
    .login-form input[type="email"],
    .login-form input[type="password"] { width: 180px; }
    .user-info { justify-content: flex-end; }

    .cookie-consent .container { flex-direction: row; align-items: center; justify-content: space-between; flex-wrap: nowrap; }
    .cookie-text { flex: 1; min-width: 300px; }
    .cookie-buttons { flex-direction: row; gap: 12px; }
    .cookie-btn { padding: 10px 24px; }

    .feature-grid,
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }

    .footer ul { grid-template-columns: repeat(4, 1fr); gap: 0.5rem; margin-bottom: 20px; }
}


@media (max-width: 768px) {
    .browser-frame { display: none; }
    .app-preview { max-width: 300px; }
}

/* ------------------------------------------------ */
@media (min-width: 900px) {
    .price span { display: inline; }
    .login-form input { width: 160px; }
}

/* ------------------------------------------------ */
@media (min-width: 1024px) {
    .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ------------------------------------------------ */
@media (min-width: 1440px) {

}