*{
box-sizing:border-box;
}

body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#f7f5ef;
color:#1f2933;
}

a{
text-decoration:none;
color:inherit;
}

.container{
width:min(1180px,calc(100% - 40px));
margin:auto;
}

/* HERO */

.hero{
position:relative;
min-height:640px;
display:flex;
flex-direction:column;
justify-content:center;
width:min(1180px,calc(100% - 40px));
margin:30px auto 15px auto;
border-radius:24px;
overflow:hidden;
box-shadow:14px 14px 36px rgba(0,0,0,.38);
background:
linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 140px),
linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.40)),
url('/img/hero.jpg') center/cover no-repeat;
color:white;
}

.hero-top{
position:absolute;
top:18px;
left:34px;
right:34px;
display:flex;
align-items:flex-start;
justify-content:space-between;
gap:24px;
z-index:3;
}

.hero-brand{
display:inline-flex;
align-items:center;
justify-content:center;
padding:10px 16px;
}

.hero-brand img{
display:block;
width:280px;
max-width:100%;
height:auto;
}

.hero-nav{
margin-left:auto;
}

.main-nav{
display:flex;
justify-content:flex-end;
align-items:center;
gap:28px;
font-weight:700;
font-size:16px;
}

.main-nav a{
color:#f1b51c;
transition:opacity .2s;
}

.main-nav a:hover{
opacity:.75;
}

/* HERO CONTENT */

.hero-content{
width:100%;
max-width:1180px;
padding:140px 40px 20px 40px;
position:relative;
z-index:1;
}

.hero-text{
max-width:560px;
}

.hero-label{
display:inline-block;
margin-bottom:270px;
padding:6px 12px;
border-radius:20px;
background:rgba(255,193,7,.2);
color:#ffc83d;
font-size:13px;
font-weight:700;
}

.hero-text p{
margin-top:0;
}

.hero p{
font-size:18px;
margin:0 0 30px 0;
opacity:.95;
max-width:520px;
line-height:1.55;
}

.hero-buttons{
display:flex;
gap:18px;
flex-wrap:wrap;
}

/* BUTTONS */

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:14px 26px;
border-radius:10px;
font-weight:700;
font-size:15px;
}

.btn-primary{
background:#e3ad1c;
color:white;
}

.btn-secondary{
background:rgba(255,255,255,.2);
border:1px solid rgba(255,255,255,.3);
color:white;
}

/* INTRO */

.intro{
padding:15px 0 20px 0;
}

.intro-box{
border:3px solid #264d2e;
border-radius:24px;
padding:32px;
background:#f7f5ef;
box-shadow:12px 12px 28px rgba(0,0,0,.38);
}

.section-heading{
max-width:700px;
}

.section-heading.center{
max-width:820px;
margin-left:auto;
margin-right:auto;
text-align:center;
}

.section-label{
display:inline-block;
margin-bottom:14px;
padding:6px 12px;
border-radius:20px;
background:rgba(227,173,28,.14);
color:#d5a116;
font-size:13px;
font-weight:700;
}

.section-heading h2{
font-size:40px;
margin:10px 0;
color:#264d2e;
}

.section-heading p{
font-size:18px;
color:#555;
line-height:1.6;
}

/* PRODUCTS */

.products{
padding:20px 0 80px 0;
}

.products-box{
border:3px solid #264d2e;
border-radius:24px;
padding:32px;
background:#f7f5ef;
box-shadow:12px 12px 28px rgba(0,0,0,.38);
}

.product-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
align-items:stretch;
}

.product-card{
background:white;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
display:flex;
flex-direction:column;
height:100%;
transition:all .25s ease;
}

.product-card:hover{
transform:translateY(-6px);
box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.product-image-wrap{
aspect-ratio:1/1;
background:#f3efe7;
padding:18px;
display:flex;
align-items:center;
justify-content:center;
}

.product-image{
max-width:100%;
max-height:100%;
width:auto;
height:auto;
object-fit:contain;
display:block;
transition:transform .25s ease;
}

.product-card:hover .product-image{
transform:scale(1.05);
}

.product-card-body{
padding:22px;
display:flex;
flex-direction:column;
flex-grow:1;
}

.product-card h3{
margin:0 0 10px;
font-size:24px;
color:#264d2e;
min-height:58px;
}

.product-card p{
margin:0 0 16px;
color:#666;
flex-grow:1;
line-height:1.6;
}

.card-link{
color:#e3ad1c;
font-weight:700;
}

/* APP SECTION */

.app-section{
padding:80px 0;
background:#234d20;
color:white;
}

.app-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.app-text h2{
margin:0 0 14px 0;
font-size:40px;
}

.app-text p{
font-size:18px;
line-height:1.6;
}

.check-list{
list-style:none;
padding:0;
margin:24px 0 28px 0;
}

.check-list li{
margin-bottom:10px;
padding-left:20px;
position:relative;
}

.check-list li::before{
content:"✓";
position:absolute;
left:0;
color:#ffc83d;
}

.app-install-box{
background:white;
color:#222;
padding:30px;
border-radius:16px;
}

.warning-box{
background:#fff5d7;
border-left:5px solid #e3ad1c;
padding:12px;
margin:15px 0;
}

.install-steps{
padding-left:20px;
}

.small-note{
color:#666;
}

/* BENEFITS */

.benefits{
padding:80px 0;
}

.benefit-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:22px;
}

.benefit-card{
background:white;
padding:24px;
border-radius:16px;
box-shadow:0 10px 20px rgba(0,0,0,.07);
}

.benefit-card h3{
margin:0 0 8px;
color:#264d2e;
}

/* FOOTER */

.site-footer{
background:#163016;
color:white;
margin-top:60px;
}

.footer-grid{
display:grid;
grid-template-columns:1fr 1fr 1fr;
gap:40px;
padding:50px 0;
}

.footer-brand{
font-size:22px;
font-weight:700;
margin:0 0 16px 0;
}

.footer-links{
list-style:none;
padding:0;
margin:0;
}

.footer-links li{
margin-bottom:8px;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,.1);
padding:20px 0;
font-size:14px;
}

/* =========================
   CONTACT LINKS
========================= */

.email-link,
.email-link:visited{
color:#25D366;
text-decoration:none;
font-weight:500;
}

.email-link:hover{
text-decoration:underline;
}

.phone-link,
.phone-link:visited{
color:#25D366;
text-decoration:none;
font-weight:500;
}

.phone-link:hover{
text-decoration:underline;
}

.whatsapp-link,
.whatsapp-link:visited{
color:#25D366;
font-weight:600;
text-decoration:none;
}

.whatsapp-link:hover{
text-decoration:underline;
}

/* PRODUCTEN - INTERNE DETAILWEERGAVE */

.product-clickable{
cursor:pointer;
}

.product-open-btn{
background:none;
border:none;
padding:0;
font:inherit;
cursor:pointer;
text-align:left;
}

.product-open-btn:hover{
opacity:.8;
}

.product-detail-single-box{
animation:fadeInProduct .25s ease;
}

@keyframes fadeInProduct{
from{
opacity:0;
transform:translateY(8px);
}
to{
opacity:1;
transform:translateY(0);
}
}

.product-detail-header{
max-width:860px;
margin:0 auto 28px auto;
text-align:left;
}

.product-detail-header .section-label{
margin-bottom:18px;
}

.product-back-btn{
display:inline-flex;
align-items:center;
justify-content:center;
gap:8px;
margin:0 0 18px 0;
padding:10px 16px;
border:none;
border-radius:999px;
background:rgba(227,173,28,.14);
color:#b88400;
font-size:14px;
font-weight:700;
line-height:1;
cursor:pointer;
transition:all .2s ease;
box-shadow:none;
appearance:none;
-webkit-appearance:none;
}

.product-back-btn:hover{
background:rgba(227,173,28,.22);
transform:translateY(-1px);
}

.product-detail-header h2{
font-size:42px;
line-height:1.15;
margin:0 0 16px 0;
color:#264d2e;
}

.product-detail-header p{
font-size:18px;
line-height:1.65;
color:#555;
margin:0;
max-width:900px;
}

.product-detail-layout-single{
display:grid;
grid-template-columns:1fr;
gap:22px;
max-width:900px;
margin:0 auto;
}

.product-detail-image-panel-single{
width:100%;
max-width:420px;
margin:0 auto;
border-radius:24px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
background:#f3efe7;
}

.product-detail-image-single{
display:block;
width:100%;
height:320px;
object-fit:cover;
object-position:center;
border-radius:24px;
}

.product-detail-content-panel{
max-width:900px;
margin:0 auto;
display:flex;
flex-direction:column;
gap:20px;
}

.product-detail-specs{
display:grid;
grid-template-columns:1fr 1fr;
gap:14px;
}

.detail-spec{
background:white;
border-radius:18px;
padding:16px 18px;
box-shadow:0 10px 20px rgba(0,0,0,.06);
}

.detail-spec strong{
display:block;
margin-bottom:6px;
font-size:14px;
color:#264d2e;
}

.detail-spec span{
display:block;
color:#555;
line-height:1.55;
}

.product-detail-text-box{
background:white;
border-radius:20px;
padding:24px;
box-shadow:0 10px 20px rgba(0,0,0,.06);
}

.product-detail-text-box h3{
margin:0 0 12px 0;
font-size:24px;
color:#264d2e;
}

.product-detail-text-box p{
margin:0 0 14px 0;
color:#555;
line-height:1.75;
}

.product-detail-list{
margin:0;
padding-left:20px;
color:#555;
line-height:1.9;
}

/* APP PAGINA */

.app-page-hero{
min-height:560px;
background:
linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 140px),
linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.40)),
url('/img/hero.jpg') center/cover no-repeat;
}

.app-benefit-grid{
margin-top:10px;
}

/* DOWNLOADS PAGINA */

.downloads-page-hero{
min-height:560px;
background:
linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 140px),
linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.40)),
url('/img/hero.jpg') center/cover no-repeat;
}

.apk-download-box{
background:white;
border-radius:22px;
padding:28px;
box-shadow:0 10px 20px rgba(0,0,0,.07);
display:flex;
align-items:center;
justify-content:space-between;
gap:24px;
margin-top:10px;
}

.apk-download-text h3{
margin:0 0 10px 0;
font-size:28px;
color:#264d2e;
}

.apk-download-text p{
margin:0;
color:#555;
line-height:1.6;
}

.app-guide-section{
padding:10px 0 80px 0;
}

.app-steps-list{
display:flex;
flex-direction:column;
gap:28px;
}

.app-step-row{
display:grid;
grid-template-columns:320px 1fr;
gap:28px;
align-items:center;
background:white;
border-radius:24px;
padding:28px;
box-shadow:0 10px 22px rgba(0,0,0,.07);
}

.app-step-row.reverse{
grid-template-columns:1fr 320px;
}

.app-step-row.reverse .app-step-phone{
order:2;
}

.app-step-row.reverse .app-step-text{
order:1;
}

.app-step-phone{
display:flex;
justify-content:center;
align-items:center;
}

.app-step-image{
display:block;
width:auto;
max-width:220px;
max-height:420px;
height:auto;
object-fit:contain;
border-radius:20px;
box-shadow:0 10px 22px rgba(0,0,0,.10);
}

.app-step-text h3{
margin:0 0 14px 0;
font-size:30px;
color:#264d2e;
}

.app-step-text p{
margin:0 0 14px 0;
line-height:1.75;
color:#555;
}

.app-step-text p:last-child{
margin-bottom:0;
}

.privacy-content{
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content h2{
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 28px;
}

.privacy-content h3{
    margin-top: 22px;
    margin-bottom: 10px;
    font-size: 20px;
}

.privacy-content p{
    margin-bottom: 16px;
    line-height: 1.7;
}

.privacy-content ul{
    margin: 0 0 18px 22px;
    padding: 0;
}

.privacy-content li{
    margin-bottom: 8px;
    line-height: 1.6;
}

/* APP GUIDE WRAPPER */

.app-guide-wrapper{
border:3px solid #264d2e;
border-radius:24px;
padding:32px;
background:#f7f5ef;
box-shadow:12px 12px 28px rgba(0,0,0,.38);
}

/* RESPONSIVE */

@media(max-width:1100px){

.product-grid{
grid-template-columns:1fr 1fr;
}

.benefit-grid{
grid-template-columns:1fr 1fr;
}

.app-grid{
grid-template-columns:1fr;
}

.footer-grid{
grid-template-columns:1fr;
}

.product-detail-header h2{
font-size:38px;
}

.product-detail-image-panel-single{
max-width:380px;
}

.product-detail-image-single{
height:240px;
}

.app-step-row,
.app-step-row.reverse{
grid-template-columns:260px 1fr;
}

.app-step-row.reverse .app-step-phone{
order:2;
}

.app-step-row.reverse .app-step-text{
order:1;
}

}

@media(max-width:768px){

.hero-top{
top:18px;
left:18px;
right:18px;
display:flex;
flex-direction:column;
align-items:flex-start;
gap:14px;
}

.hero-brand img{
width:170px;
height:auto;
}

.hero-label{
display:inline-block;
position:relative;
top:0;
left:0;
margin-top:78px;
margin-bottom:14px;
}

.hero-nav{
width:100%;
margin-top:8px;
margin-left:0;
}

.main-nav{
display:grid;
grid-template-columns:1fr 1fr;
gap:12px 14px;
justify-content:center;
text-align:center;
font-size:14px;
}

.main-nav a{
padding:10px 12px;
border-radius:12px;
background:rgba(0,0,0,.26);
border:1px solid rgba(255,255,255,.10);
backdrop-filter:blur(4px);
}

.hero-content{
padding:240px 18px 28px 18px;
}

.hero p{
margin-top:0;
font-size:16px;
line-height:1.45;
}

.hero-buttons{
margin-top:20px;
flex-direction:column;
gap:14px;
}

.btn{
width:100%;
}

.section-heading h2,
.app-text h2{
font-size:32px;
}

.product-grid{
grid-template-columns:1fr;
}

.benefit-grid{
grid-template-columns:1fr;
}

.product-card h3{
min-height:auto;
}

.product-card-body,
.app-install-box,
.benefit-card{
padding:18px;
}

.products-box{
padding:20px;
}

.intro-box{
padding:20px;
}

.hero{
width:min(100% - 24px,1180px);
margin:20px auto;
min-height:auto;
background:
linear-gradient(rgba(0,0,0,0.48),rgba(0,0,0,0.42)),
url('/img/hero.jpg') 72% center/cover no-repeat;
}

.hero-brand{
padding:8px 12px;
}

.container{
width:min(1180px,calc(100% - 24px));
margin:auto;
}

.product-detail-header{
margin-bottom:22px;
}

.product-back-btn{
font-size:13px;
padding:9px 14px;
margin-bottom:16px;
}

.product-detail-header h2{
font-size:32px;
line-height:1.15;
}

.product-detail-header p{
font-size:16px;
line-height:1.6;
}

.product-detail-image-panel-single{
max-width:300px;
border-radius:20px;
}

.product-detail-image-single{
height:200px;
border-radius:20px;
}

.product-detail-specs{
grid-template-columns:1fr;
}

.product-detail-text-box{
padding:18px;
}

.product-detail-text-box h3{
font-size:22px;
}

.app-page-hero{
min-height:auto;
}

.downloads-page-hero{
min-height:auto;
}

.apk-download-box{
flex-direction:column;
align-items:flex-start;
}

.app-step-row,
.app-step-row.reverse{
grid-template-columns:1fr;
padding:22px;
}

.app-step-row.reverse .app-step-phone,
.app-step-row.reverse .app-step-text{
order:initial;
}

.app-step-phone{
justify-content:flex-start;
}

.app-step-image{
max-width:180px;
max-height:340px;
}

.app-step-text h3{
font-size:26px;
}
	
.app-guide-wrapper{
padding:20px;
}
	
}

@media(max-width:420px){

.hero{
background:
linear-gradient(rgba(0,0,0,0.50),rgba(0,0,0,0.44)),
url('/img/hero.jpg') 76% center/cover no-repeat;
}

.hero-top{
left:14px;
right:14px;
top:14px;
}

.hero-brand{
font-size:17px;
padding:9px 14px;
}

.hero-brand img{
width:145px;
}

.main-nav{
font-size:13px;
gap:10px 10px;
}

.main-nav a{
padding:9px 10px;
}

.hero-content{
padding:168px 16px 26px 16px;
}

.hero-label{
font-size:12px;
padding:6px 10px;
margin-top:64px;
}

.hero p{
font-size:16px;
}

.section-heading h2,
.app-text h2{
font-size:28px;
}

.product-back-btn{
width:auto;
max-width:100%;
}

.product-detail-header h2{
font-size:28px;
}

.product-detail-image-panel-single{
max-width:260px;
}

.product-detail-image-single{
height:170px;
border-radius:18px;
}

.app-step-image{
max-width:150px;
max-height:280px;
}
	
}