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

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

    --radius: 1rem;
    --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; }

/* 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 { 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); }

/* Hero Sectie */
.hero-section { background: linear-gradient(135deg, var(--bg-alt) 0%, #e0e7ff 100%); padding: 6rem 2rem; overflow: hidden; }
.hero-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.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); }
.hero-text h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; color: #111827; }
.hero-text p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 500px; }
.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; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(37,99,235,0.3); }
.btn-secondary { background: white; color: var(--text-main); padding: 1rem 2rem; border-radius: 9999px; font-weight: 700; display: inline-flex; gap: 0.5rem; align-items: center; transition: all 0.2s; border: 2px solid var(--border); }
.btn-secondary:hover { background: var(--bg-alt); }
.btn-lg { font-size: 1.125rem; padding: 1.25rem 2.5rem; }

/* Radar Animatie */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; height: 300px; }
.radar-box { position: relative; width: 80px; height: 80px; background: white; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2rem; z-index: 10; box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.3); border: 2px solid var(--blue-50); }
.text-blue { color: var(--primary); }
.wave { position: absolute; border-radius: 50%; opacity: 0; animation: ripple 3s linear infinite; }
.wave1 { width: 150px; height: 150px; border: 2px solid var(--primary); animation-delay: 0s; }
.wave2 { width: 250px; height: 250px; border: 2px solid var(--primary); animation-delay: 1s; }
.wave3 { width: 350px; height: 350px; border: 2px solid #bfdbfe; animation-delay: 2s; }
@keyframes ripple {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}
.status-badge { position: absolute; bottom: -80px; background: white; border: 1px solid var(--border); padding: 0.75rem 1.5rem; border-radius: 999px; font-weight: 700; font-size: 0.875rem; color: var(--green-600); box-shadow: 0 4px 6px rgba(0,0,0,0.05); display: flex; gap: 0.5rem; align-items: center; white-space: nowrap; }

/* Layouts */
.section-gray { background: var(--bg-alt); padding: 5rem 2rem; }
.section-white { background: #ffffff; padding: 5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 3rem; color: #111827; }
.section-subtitle { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 4rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 1.5rem; padding: 2.5rem; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); transition: transform 0.2s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.card h3 { font-size: 1.25rem; margin-bottom: 1rem; color: #111827; }
.card p { color: var(--text-muted); font-size: 1rem; }
.align-left { text-align: left; }

.icon-circle { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 1.5rem auto; }
.icon-orange { background: var(--orange-50); color: var(--orange-600); }
.icon-red { background: var(--red-50); color: var(--red-600); }
.icon-blue { background: var(--blue-50); color: var(--blue-600); }
.icon-lg { font-size: 2.5rem; }
.text-green { color: var(--green-600); }
.text-orange { color: var(--orange-600); }
.mb-2 { margin-bottom: 1rem; display: block; }

/* Alert Box */
.section-alert { padding: 4rem 2rem; }
.flex-center { display: flex; justify-content: center; }
.alert-box { display: flex; gap: 1.5rem; background: var(--orange-50); border: 1px solid #fed7aa; padding: 2.5rem; border-radius: 1.5rem; max-width: 900px; align-items: flex-start; }
.alert-icon { font-size: 2.5rem; color: var(--orange-600); }
.alert-text h3 { color: #9a3412; font-size: 1.25rem; margin-bottom: 0.5rem; font-weight: 800; }
.alert-text p { color: #c2410c; font-size: 1rem; line-height: 1.6; }

/* Pricing */
.pricing-card { background: white; max-width: 800px; margin: 0 auto; border-radius: 1.5rem; padding: 3rem; border: 1px solid var(--border); box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1); text-align: left; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; }
.border-bottom { border-bottom: 1px solid var(--border); }
.price-label { font-size: 1.125rem; color: #111827; }
.price-label strong { color: var(--primary); }
.price-val { font-size: 1.5rem; font-weight: 800; color: #111827; display: flex; flex-direction: column; align-items: flex-end; }
.price-val small { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); }
.text-sm { font-size: 0.875rem; }
.text-muted { color: var(--text-muted); }
.mt-3 { margin-top: 1rem; }

/* CTA */
.footer-cta { background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%); color: white; padding: 6rem 2rem; }
.footer-cta h2 { font-size: 2.5rem; font-weight: 800; max-width: 800px; margin: 0 auto; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* 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-container, .grid-3, .footer-container { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 2.5rem; }
    .price-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .price-val { align-items: flex-start; flex-direction: row; gap: 0.5rem; }
    .alert-box { flex-direction: column; text-align: center; align-items: center; }
}
