/* tarieven style.css */
:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --card-bg: #ffffff;
    --bg-alt: #f3f4f6;

    --blue-50: #eff6ff;
    --blue-600: #2563eb;
    --orange-50: #fff7ed;
    --orange-600: #ea580c;
    --green-50: #f0fdf4;
    --green-600: #16a34a;

    --radius: 1.5rem;
    --font-family: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-family); color: var(--text-main); background: #ffffff; line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: all 0.2s; }
ul { list-style: none; }

/* Navbar */
.navbar { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); padding: 1rem 2rem; }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 45px; width: auto; }
.nav-links { display: flex; gap: 2rem; font-weight: 600; color: var(--text-muted); }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-actions { display: flex; gap: 1rem; align-items: center; }
.nav-login { font-weight: 600; color: var(--text-muted); display: flex; gap: 0.5rem; align-items: center; }
.nav-login:hover { color: var(--primary); background: var(--blue-50); padding: 0.5rem 1rem; border-radius: 0.5rem; margin: -0.5rem -1rem; }
.nav-phone { background: var(--primary); color: white; padding: 0.6rem 1.2rem; border-radius: 9999px; font-weight: 700; display: flex; gap: 0.5rem; align-items: center; }
.nav-phone:hover { background: var(--primary-hover); }

/* Héérlijke Hero */
.hero-section { background: radial-gradient(circle at top center, #ffffff 0%, #eef2ff 45%, #e0e7ff 100%); padding: 6rem 2rem; }
.text-center { text-align: center; }
.container { max-width: 1200px; margin: 0 auto; }
.hero-content { max-width: 800px; }
.badge-accent { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255, 255, 255, 0.8); border: 1px solid var(--border); padding: 0.4rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 700; color: var(--primary); margin-bottom: 1.5rem; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
.mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
.hero-section h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.08; margin-bottom: 1.5rem; color: #111827; letter-spacing: -0.02em; }
.text-blue { color: var(--primary); }
.hero-subtext { font-size: 1.25rem; color: var(--text-muted); }

/* Prijzen Overzicht */
.section-cards { padding: 5rem 2rem; margin-top: -3rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; align-items: start; max-width: 900px; margin: 0 auto; }
.pricing-card { background: var(--card-bg); border-radius: var(--radius); padding: 3rem; box-shadow: 0 14px 30px rgba(2, 6, 23, 0.08); border: 1px solid var(--border); position: relative; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.pricing-card:hover { transform: translateY(-4px); border-color: #bfdbfe; box-shadow: 0 24px 40px rgba(37, 99, 235, 0.16); }
.main-card { border: 2px solid var(--primary); transform: translateY(-1rem); }
.card-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; padding: 0.4rem 1.5rem; border-radius: 999px; font-weight: 700; font-size: 0.875rem; white-space: nowrap; box-shadow: 0 4px 6px rgba(37,99,235,0.2); }
.bg-gray { background: #4b5563; }
.icon-circle { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.5rem; }
.icon-blue { background: var(--blue-50); color: var(--blue-600); }
.icon-orange { background: var(--orange-50); color: var(--orange-600); }
.icon-green { background: var(--green-50); color: var(--green-600); }
.pricing-card h2 { font-size: 1.5rem; color: #111827; margin-bottom: 0.5rem; }
.price-display { margin-bottom: 1.5rem; }
.price-big { font-size: 3rem; font-weight: 800; color: #111827; }
.price-unit { font-size: 1rem; color: var(--text-muted); font-weight: 600; }
.pricing-card p { color: var(--text-muted); margin-bottom: 1.5rem; }
.info-note { font-size: 0.875rem; color: var(--primary); background: var(--blue-50); padding: 1rem; border-radius: 0.75rem; display: flex; gap: 0.5rem; align-items: flex-start; }

.region-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag { font-size: 0.875rem; background: var(--bg-alt); padding: 0.5rem 1rem; border-radius: 999px; font-weight: 600; color: #4b5563; }

/* Invoer Veld voor Postcode */
.section-checker { background: var(--bg-alt); padding: 6rem 2rem; border-top: 1px solid var(--border); }
.checker-box { max-width: 600px; margin: 0 auto; background: white; border-radius: var(--radius); padding: 3rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); border: 1px solid var(--border); }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-3 { margin-bottom: 1.5rem; }
.checker-box h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; color: #111827; }
.checker-box p { color: var(--text-muted); margin-bottom: 2rem; }

.search-form { display: flex; gap: 1rem; margin-bottom: 2rem; justify-content: center; }
.search-form input { flex: 1; padding: 1rem 1.5rem; border: 2px solid var(--border); border-radius: 999px; font-size: 1.125rem; outline: none; transition: border-color 0.2s; text-align: center; max-width: 250px; font-weight: 600; }
.search-form input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--blue-50); }
.btn-primary { background: var(--primary); color: white; padding: 1rem 2rem; border-radius: 9999px; font-weight: 700; display: inline-flex; gap: 0.5rem; align-items: center; transition: all 0.2s; border: none; cursor: pointer; font-size: 1.125rem; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(37,99,235,0.3); background: var(--primary-hover); }

.hidden { display: none !important; }
.result-box { margin-top: 2rem; background: var(--green-50); border: 1px solid #bbf7d0; border-radius: 1rem; padding: 2rem; animation: slideUp 0.3s ease-out; }
.icon-large { font-size: 3rem; margin-bottom: 1rem; }
.result-box h3 { font-size: 1.5rem; font-weight: 800; color: #166534; margin-bottom: 0.25rem; }
.result-price { margin-top: 1.5rem; font-size: 1.25rem; color: #166534; background: white; padding: 1rem; border-radius: 0.75rem; border: 1px solid #bbf7d0; display: flex; justify-content: space-between; font-weight: 600; }
.font-bold { font-weight: 800; }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Bonnetje / Receipt Sectie */
.section-receipt { padding: 6rem 2rem; background: white; }
.grid-receipt { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1000px; margin: 0 auto; }
.receipt-info h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1.5rem; color: #111827; }
.receipt-p { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 2rem; }
.check-list li { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; font-weight: 600; font-size: 1.125rem; }
.mt-4 { margin-top: 2rem; }

/* CSS Bonnetje Tekening */
.receipt-visual { display: flex; justify-content: center; }
.bonnetje { background: #fdfdfd; width: 350px; padding: 2rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15); border: 1px solid #e5e7eb; position: relative; font-family: 'Courier New', Courier, monospace; color: #374151; }
.bonnetje-top, .bonnetje-bottom { position: absolute; left: 0; right: 0; height: 10px; background-size: 20px 20px; background-repeat: repeat-x; }
.bonnetje-top { top: -10px; background-image: radial-gradient(circle at 10px 0, transparent 10px, #fdfdfd 11px); }
.bonnetje-bottom { bottom: -10px; background-image: radial-gradient(circle at 10px 10px, transparent 10px, #fdfdfd 11px); }
.bonnetje-header { text-align: center; border-bottom: 2px dashed #d1d5db; padding-bottom: 1.5rem; margin-bottom: 1.5rem; }
.bonnetje-header h4 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.25rem; }
.bon-row { display: flex; justify-content: space-between; margin-bottom: 1rem; font-weight: 600; align-items: flex-start; }
.bon-row small { font-weight: 400; display: block; margin-top: 0.25rem; }
.bonnetje-body { border-bottom: 2px dashed #d1d5db; padding-bottom: 1.5rem; margin-bottom: 1.5rem; }
.bonnetje-total { display: flex; justify-content: space-between; font-weight: 800; font-size: 1.25rem; align-items: center; }
.total-price { font-size: 1.5rem; }

/* Footer */
.footer { background: #111827; color: white; padding: 5rem 2rem 2rem; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; }
.footer-logo { height: 50px; margin-bottom: 1.5rem; filter: brightness(0) invert(1); }
.footer-col p { color: #9ca3af; margin-bottom: 1rem; font-size: 0.875rem; }
.footer-col h4 { font-size: 1.125rem; margin-bottom: 1.5rem; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul a, .footer-bottom a { color: #9ca3af; }
.footer-col ul a:hover, .footer-bottom a:hover { color: white; text-decoration: underline; }
.footer-phone { color: #f97316; font-size: 1.25rem; font-weight: 700; display: flex; gap: 0.5rem; align-items: center; margin-bottom: 1rem; }
.socials a { color: #9ca3af; font-size: 1.5rem; margin-right: 1rem; }
.socials a:hover { color: white; }
.footer-bottom { border-top: 1px solid #374151; margin-top: 4rem; padding-top: 2rem; text-align: center; color: #6b7280; font-size: 0.875rem; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-section h1 { font-size: 2.5rem; }
    .grid-2, .grid-receipt, .footer-container { grid-template-columns: 1fr; }
    .main-card { transform: none; }
    .search-form { flex-direction: column; }
    .search-form input { max-width: 100%; }
    .bonnetje { width: 100%; }
}
