/* --- 1. Design Tokens & Reset --- */
:root {
    /* Kleuren */
    --bg-ivory: #F6F3EE;
    --bg-mist: #EEF1F0;
    --bg-white: #FFFFFF;
    --bg-deep: #1A1F2A; 
    
    --text-main: #141615;
    --text-muted: #4A514D; 
    --text-white: #FFFFFF;
    
    --accent-clay: #C86B4A;
    --accent-dark: #B85A3A;
    --accent-soft: #F3D2C7;
    
    --border-light: #E3E0DA;
    --border-dark: #2A313E;
    
    /* Typografie */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Vorm */
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-pill: 100px;
    --shadow-soft: 0px 4px 20px rgba(20, 22, 21, 0.05);
    --shadow-hover: 0px 10px 30px rgba(20, 22, 21, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-ivory);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Noise Texture Overlay */
.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 9999; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Typografie */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--text-main); font-weight: 700; line-height: 1.15; }
h1 { font-size: 3.5rem; letter-spacing: -0.03em; margin-bottom: 1.25rem; }
h2 { font-size: 2.5rem; letter-spacing: -0.02em; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; color: var(--text-muted); }

.lead { font-size: 1.125rem; margin-bottom: 2.5rem; max-width: 60ch; }
.lead-text { font-size: 1.1rem; color: var(--text-muted); max-width: 65ch; margin-bottom: 0; }
.eyebrow { text-transform: uppercase; font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; color: var(--accent-clay); margin-bottom: 0.75rem; display: block; }
.text-accent { color: var(--accent-clay); }
.text-muted { color: var(--text-muted); font-size: 0.95rem; }

/* Layout Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 96px 0; }
.bg-mist { background-color: var(--bg-mist); }
.bg-deep { background-color: var(--bg-deep); color: white; }
.text-white { color: var(--text-white); }
.text-center { text-align: center; }
.align-start { align-items: start; }
.align-end { align-items: end; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; } 

.mt-large { margin-top: 3rem; }
.mt-medium { margin-top: 1.5rem; }
.mb-large { margin-bottom: 3rem; }
.mb-medium { margin-bottom: 1.5rem; }
.no-margin-bottom { margin-bottom: 0 !important; }

/* Section Header Component */
.section-header { margin-bottom: 48px; max-width: 720px; text-align: left; }
.flex-header { display: flex; justify-content: space-between; align-items: end; max-width: 100%; }
.header-text { max-width: 720px; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px; border-radius: var(--radius-pill);
    font-weight: 600; cursor: pointer; transition: all 0.3s ease;
    border: 1px solid transparent; text-decoration: none; font-size: 1rem;
    height: 52px;
}
.btn-primary { background-color: var(--accent-clay); color: white; }
.btn-primary:hover { background-color: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-hover); }

.btn-secondary { background-color: transparent; border-color: var(--text-main); color: var(--text-main); }
.btn-secondary:hover { background-color: var(--text-main); color: white; }

.btn-outline { background: transparent; border-color: var(--border-light); color: var(--text-main); }
.btn-outline:hover { border-color: var(--text-main); background: white; }

.btn-sm { padding: 0 24px; font-size: 0.9rem; height: 44px; }
.full-width { width: 100%; }

/* Links */
.text-link { color: var(--text-main); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--border-light); transition: 0.3s; padding-bottom: 2px; }
.text-link:hover { border-color: var(--accent-clay); color: var(--accent-clay); }
.text-link.tertiary { font-size: 0.9rem; }

/* Badges & Chips */
.badge-xs { font-size: 0.7rem; background: var(--accent-soft); color: var(--accent-dark); padding: 2px 8px; border-radius: 10px; font-weight: 600; margin-left: 5px; vertical-align: middle; }
.trust-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.chip { display: inline-flex; align-items: center; font-size: 0.85rem; color: var(--text-muted); font-weight: 600; background: rgba(255,255,255,0.6); padding: 8px 16px; border-radius: 20px; border: 1px solid var(--border-light); }

/* Cards */
.card { background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 32px; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: var(--accent-clay); }
.dark-card { background: #222936; border-color: var(--border-dark); color: white; }
.dark-card:hover { border-color: var(--accent-clay); }

/* --- Header --- */
header { position: sticky; top: 0; z-index: 100; background: rgba(246, 243, 238, 0.9); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.03); padding: 16px 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; color: var(--text-main); text-decoration: none; }
.desktop-nav { display: flex; gap: 24px; align-items: center; }
.desktop-nav a { text-decoration: none; color: var(--text-muted); font-weight: 500; font-size: 0.95rem; transition: 0.2s; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--text-main); }
.nav-item-disabled { opacity: 0.5; cursor: default; }
.nav-actions { display: flex; gap: 16px; align-items: center; }
.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-main); margin: 6px 0; transition: 0.3s; }

/* Mobile Menu */
.mobile-nav { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--bg-ivory); z-index: 99; transform: translateX(100%); transition: 0.4s ease; display: flex; align-items: center; justify-content: center; }
.mobile-nav.active { transform: translateX(0); }
.mobile-nav-content { display: flex; flex-direction: column; gap: 24px; text-align: center; }
.mobile-nav-content a { font-family: var(--font-heading); font-size: 1.5rem; text-decoration: none; color: var(--text-main); }

/* --- Hero --- */
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; min-height: 80vh; padding-top: 40px; }
.cta-group { display: flex; gap: 16px; margin-bottom: 24px; }

/* --- HERO VISUALS (Realistische Mockups) --- */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
}

/* De Laptop in Hero */
.hero-laptop {
    width: 75%;
    max-width: 650px;
    z-index: 1;
    transform: translateX(-8%) translateY(-5%) rotateY(5deg);
    transition: transform 0.5s ease-out;
}
.hero-visual:hover .hero-laptop {
     transform: translateX(-8%) translateY(-5%) rotateY(0deg);
}

/* De Telefoon container */
.hero-phone {
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 20%;
    min-width: 160px;
    max-width: 220px;
    z-index: 2;
    transform: translateY(10%);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

/* 1. De Telefoon Behuizing (Minder rond gemaakt) */
.hero-phone .mockup-iphone {
    width: 100%;
    border-radius: 20px !important; /* Veel strakker (was 40px) */
    box-shadow: 
        0 0 0 1px #333, /* Iets dunnere binnenrand */
        0 0 0 4px #5c5c5c, /* Iets dunner frame */
        0 15px 30px -10px rgba(0,0,0,0.3);
}

/* 2. Het Scherm/Plaatje (DIT ONTBRAK: Ook minder rond maken!) */
.hero-phone .mockup-iphone img {
    border-radius: 17px !important; /* Volgt de behuizing */
    border: 3px solid #000 !important; /* Dunnere bezel */
}

/* 3. De Notch/Eilandje (Kleiner en hoger) */
.hero-phone .mockup-iphone::before {
    width: 50px !important;
    height: 14px !important;
    top: 8px !important;
    border-radius: 8px !important;
}


/* Het Performance Label */
.hero-badge {
    position: absolute;
    bottom: 15%;
    left: 5%;
    background: white;
    border: 1px solid var(--accent-clay);
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.perf-score { font-family: var(--font-heading); font-size: 2rem; color: #27C93F; font-weight: 700; line-height: 1; }
.perf-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; margin-top: 5px; letter-spacing: 1px; }

/* Responsive adjustments for Hero */
@media (max-width: 900px) {
    .hero-visual { height: 400px; }
    .hero-laptop { width: 90%; transform: none; margin-bottom: 40px; }
    .hero-phone { width: 140px; right: 0; bottom: 0; }
    .hero-badge { bottom: 20px; left: 0; padding: 12px 16px; }
    .perf-score { font-size: 1.5rem; }
}

/* --- Trust Strip --- */
.trust-strip { border-bottom: 1px solid var(--border-light); padding: 24px 0; }
.trust-row { display: flex; justify-content: flex-start; gap: 48px; align-items: center; color: var(--text-main); }
.trust-divider { width: 1px; height: 24px; background: var(--border-light); }
.trust-stat strong { font-family: var(--font-heading); font-size: 1.1rem; }
.trust-stat .muted { font-size: 0.9rem; color: var(--text-muted); margin-left: 5px; }

/* --- Services --- */
.service-card { padding: 40px 32px; display: flex; flex-direction: column; height: 100%; }
.icon-box { font-size: 2.5rem; margin-bottom: 20px; }
.check-list { list-style: none; margin: 15px 0 30px; flex-grow: 1; }
.check-list li { padding-left: 24px; position: relative; margin-bottom: 10px; font-size: 0.95rem; color: var(--text-muted); }
.check-list li::before { content: '✓'; color: var(--accent-clay); position: absolute; left: 0; font-weight: bold; }
.service-card .text-link { margin-top: auto; align-self: flex-start; }

/* --- Deliverables --- */
.checklist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.check-item h4 { font-size: 1.1rem; border-bottom: 1px solid var(--accent-clay); padding-bottom: 8px; display: inline-block; margin-bottom: 16px; }
.check-item ul { list-style: none; }
.check-item li { margin-bottom: 8px; font-size: 0.95rem; }

.preview-card { background: white; border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-soft); }
.preview-header { display: flex; align-items: center; gap: 15px; border-bottom: 1px solid var(--border-light); padding-bottom: 15px; margin-bottom: 20px; }
.folder-icon { font-size: 2rem; }
.preview-title { font-weight: 700; font-family: var(--font-heading); font-size: 1.1rem; }
.preview-list { list-style: none; }
.preview-list li { padding: 12px 0; border-bottom: 1px dashed var(--border-light); font-size: 0.95rem; font-weight: 500;}
.preview-list li span { opacity: 0.8; }

/* --- Portfolio --- */
.project-card { 
    padding: 0; 
    border: none; 
    background: transparent; 
}

/* De container voor het plaatje */
.project-img { 
    width: 100%; 
    height: 320px; /* Vaste hoogte voor consistentie */
    border-radius: var(--radius-lg); 
    overflow: hidden; /* Zorgt dat het plaatje niet buiten de ronde hoeken komt */
    margin-bottom: 24px; 
    position: relative; 
    border: 1px solid var(--border-light); 
    background-color: #f0f0f0; /* Fallback kleur als plaatje even laadt */
}

/* De afbeelding zelf */
.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Belangrijk: vult het vak zonder uitrekken */
    object-position: top center; /* Laat de bovenkant van je design zien */
    transition: transform 0.5s ease; /* Smooth zoom effect */
    display: block;
}

.project-card:hover .project-img img { transform: scale(1.03); }
.project-card:hover { transform: translateY(-5px); }

/* Meta data styling */
.meta-row { display: flex; align-items: center; gap: 15px; margin-bottom: 12px; }
.tag { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; color: var(--text-main); }
.concept-label { font-size: 0.7rem; background: var(--bg-mist); padding: 4px 8px; border-radius: 4px; color: var(--text-muted); border: 1px solid var(--border-light); }

/* --- Process (Cards Grid) --- */
.process-grid { align-items: stretch; }
.process-card { padding: 32px 24px; display: flex; flex-direction: column; position: relative; }
.step-badge { width: 40px; height: 40px; background: var(--accent-clay); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-heading); margin-bottom: 20px; }
.process-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.process-card p { font-size: 0.9rem; margin-bottom: 20px; flex-grow: 1; }
.deliverable-label { font-size: 0.8rem; font-weight: 600; color: var(--accent-dark); background: var(--accent-soft); padding: 6px 12px; border-radius: 6px; display: inline-block; align-self: flex-start; }

/* --- Pricing --- */
.pricing-card hr { border: 0; border-top: 1px solid var(--border-light); margin: 24px 0; }
.pricing-card.highlight { border: 2px solid var(--accent-clay); position: relative; transform: scale(1.05); z-index: 2; box-shadow: var(--shadow-soft); }
.badge-top { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); background: var(--accent-clay); color: white; font-size: 0.8rem; padding: 4px 12px; border-radius: 12px; font-weight: 600; }
.price { font-family: var(--font-heading); font-size: 2.2rem; color: var(--text-main); margin-bottom: 5px; font-weight: 700; }
.price-sub { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; font-family: var(--font-body); }
.specs li { font-size: 0.9rem; padding-left: 20px; }
.specs li::before { content: '✓'; color: var(--accent-clay); }

/* Hosting Banner */
.hosting-banner {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
    box-shadow: var(--shadow-soft);
}
.hb-icon-wrapper { font-size: 2.5rem; }
.hb-content { flex: 1; }
.hb-content h4 { margin: 0 0 5px 0; font-size: 1.1rem; }
.hb-content p { margin: 0; font-size: 0.95rem; }
.hb-action .text-link { white-space: nowrap; }


/* --- Testimonials --- */
.h4-style { font-size: 1.25rem; margin-bottom: 15px; color: var(--bg-ivory); }
.quote { font-family: var(--font-body); font-size: 1rem; line-height: 1.6; color: #cbd2d9; margin-bottom: 24px; font-style: italic; }
.author strong { display: block; font-size: 0.95rem; }
.author span { font-size: 0.85rem; color: #8a94a1; }
.stars { color: var(--accent-clay); letter-spacing: 2px; margin-bottom: 15px; }

/* --- FAQ & Contact (Split) --- */
.contact-faq { padding: 96px 0; }
.accordion details { margin-bottom: 12px; background: white; border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; }
.accordion summary { padding: 16px 20px; cursor: pointer; font-weight: 600; list-style: none; position: relative; font-size: 0.95rem; }
.accordion summary::after { content: '+'; position: absolute; right: 20px; font-weight: 400; font-size: 1.2rem; color: var(--accent-clay); }
.accordion details[open] summary::after { content: '−'; }
.accordion p { padding: 0 20px 20px; margin: 0; font-size: 0.9rem; color: var(--text-muted); }

.contact-col { padding: 48px; position: sticky; top: 100px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border-light); border-radius: var(--radius-md); font-family: inherit; font-size: 0.95rem; background: var(--bg-ivory); transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent-clay); background: white; }
.form-muted { font-size: 0.8rem; color: var(--text-muted); }

/* --- Footer --- */
footer { background: white; border-top: 1px solid var(--border-light); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-logo { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; color: var(--text-main); text-decoration: none; margin-bottom: 16px; display: block; }
.footer-mail { display: inline-block; font-weight: 600; color: var(--text-main); text-decoration: none; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; color: var(--text-muted); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--text-main); text-decoration: none; font-size: 0.95rem; transition: 0.2s; }
.footer-col a:hover { color: var(--accent-clay); }
.footer-bottom { text-align: center; color: var(--text-muted); font-size: 0.85rem; border-top: 1px solid var(--border-light); padding-top: 32px; }

/* --- Responsive (Mobile Polish) --- */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: 1fr 1fr; } 
}

@media (max-width: 900px) {
    .section-padding { padding: 64px 0; }
    h1 { font-size: 2.5rem; margin-bottom: 1rem; }
    h2 { font-size: 2rem; }
    
    .desktop-nav, .nav-actions .btn { display: none; }
    .hamburger { display: block; }
    
    .hero-grid, .grid-2, .grid-3, .grid-4, .checklist-grid { grid-template-columns: 1fr; }
    .hero-grid { display: flex; flex-direction: column-reverse; gap: 40px; }
    .cta-group { flex-direction: column; }
    .btn { width: 100%; }
    
    .trust-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .chip { font-size: 0.75rem; padding: 8px; justify-content: center; }
    
    .hero-visual { width: 100%; height: 280px; }
    .main-card { transform: translate(-50%, -50%) scale(0.8); }
    
    .trust-row { flex-direction: column; gap: 16px; align-items: flex-start; }
    .trust-divider { display: none; }
    
    .flex-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .desktop-only { display: none; }
    .mobile-only { display: block; }
    
    .process-card { padding: 24px; }
    
    .pricing-card.highlight { transform: none; order: -1; }
    
    /* Hosting banner mobile fix */
    .hosting-banner { flex-direction: column; text-align: center; }
    .hb-action { margin-top: 10px; }
    
    .contact-col { padding: 32px 24px; position: relative; top: 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (min-width: 901px) { .mobile-only { display: none; } }

/* Animaties */
.fade-up { opacity: 0; transform: translateY(20px); transition: 0.6s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* =========================================
   CASE STUDY PAGINA STYLES
   ========================================= */

.case-hero { padding-top: 60px; padding-bottom: 60px; text-align: center; }
.case-hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--text-muted); text-decoration: none; margin-bottom: 32px; font-size: 0.9rem; }
.back-link:hover { color: var(--accent-clay); }

.case-nav { 
    border-top: 1px solid var(--border-light); 
    padding-top: 48px; 
    padding-bottom: 80px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-top: 80px; 
}

.meta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); padding: 32px 0; margin: 48px 0; text-align: left; }
.meta-item h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 8px; }
.meta-item p { font-weight: 600; color: var(--text-main); margin: 0; }

.cs-block { margin-bottom: 80px; }
.cs-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.sticky-title { position: sticky; top: 120px; }

.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 48px 0; }
.mobile-mockup { background: #F5F1EA; padding: 40px; border-radius: var(--radius-lg); text-align: center; }

.palette-row { display: flex; gap: 16px; margin-top: 16px; }
.color-swatch { width: 60px; height: 60px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: white; text-shadow: 0 1px 2px rgba(0,0,0,0.2); }

@media (max-width: 768px) {
    .meta-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .cs-grid { grid-template-columns: 1fr; gap: 32px; }
    .showcase-grid { grid-template-columns: 1fr; }
    .case-hero h1 { font-size: 2.2rem; }
    .case-nav { flex-direction: column; gap: 20px; text-align: center; padding-bottom: 60px; }
    .sticky-title { position: static; margin-bottom: 20px; }
}

/* =========================================
   CSS DEVICE MOCKUPS (General)
   ========================================= */

/* 1. iPhone Style (Algemeen voor Cases) */
.mockup-iphone {
    position: relative;
    width: 310px; /* Beter formaat voor screenshots */
    aspect-ratio: 9 / 18; /* Klopt met 16:9 achtige screenshots */
    background: #000;
    border-radius: 40px;
    box-shadow: 
        0 0 0 2px #333,
        0 0 0 6px #5c5c5c,
        0 20px 50px -10px rgba(0,0,0,0.3);
    margin: 0 auto;
    overflow: hidden;
    z-index: 1;
}

.mockup-iphone::before {
    content: ''; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
    width: 80px; height: 22px; background: #000; border-radius: 20px; z-index: 10;
}

.mockup-iphone img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    border-radius: 35px; background: #fff; border: 5px solid #000;
}

/* 2. Macbook Pro Style */
.mockup-macbook {
    position: relative; width: 100%; max-width: 1000px; margin: 0 auto; perspective: 1000px;
}

.macbook-screen {
    background: #000; border-radius: 20px 20px 0 0; padding: 3% 3% 0 3%;
    box-shadow: inset 0 0 0 2px #333; position: relative;
}

.macbook-screen img {
    width: 100%; height: auto; display: block;
    border-radius: 6px 6px 0 0; object-fit: cover; object-position: top;
}

.macbook-bottom {
    height: 14px; background: #e0e0e0; border-radius: 0 0 20px 20px;
    position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: linear-gradient(to bottom, #dcdcdc 0%, #b0b0b0 100%);
}

.macbook-bottom::after {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 15%; height: 6px; background: #a0a0a0; border-radius: 0 0 6px 6px;
}
/* --- Styles voor Tekstpagina's (Legal) --- */
.legal-content {
    max-width: 800px; /* Prettige leesbreedte */
    margin: 60px auto 100px auto;
}
.legal-content h1 { margin-bottom: 40px; }
.legal-content h2 { margin-top: 40px; font-size: 1.5rem; }
.legal-content h3 { margin-top: 24px; font-size: 1.1rem; }
.legal-content p, .legal-content li { color: var(--text-muted); margin-bottom: 16px; }
.legal-content ul { list-style: disc; padding-left: 20px; margin-bottom: 20px; }