/* --- BASIS --- */
:root {
    --leaf-green: #4CAF50;
    --deep-ocean: #0A3D62;
    --eco-bg: #F0F4F1;
    --white: #ffffff;
    --text-muted: #64748b;
    --border-light: #e2e8f0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Outfit', sans-serif; color: var(--deep-ocean); line-height: 1.6; background-color: var(--white); scroll-behavior: smooth; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* --- HEADER --- */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.logo { height: 70px; width: auto; }
nav { display: flex; align-items: center; gap: 20px; }
nav a { font-weight: 600; text-decoration: none; color: var(--deep-ocean); font-size: 0.9rem; }
.btn-demo-dynamic { background: var(--leaf-green); color: white !important; padding: 10px 20px; border-radius: 25px; text-decoration: none; font-size: 0.85rem; }

/* --- HERO --- */
.hero { padding: 100px 0; background: var(--eco-bg); text-align: center; }
.hero h1 { font-size: 3rem; margin-bottom: 20px; }
.highlight { color: var(--leaf-green); }
.hero p { max-width: 700px; margin: 0 auto 30px; font-size: 1.1rem; color: var(--text-muted); }

/* --- GRID & CARDS --- */
.section-padding { padding: 80px 0; }
.section-title { font-size: 2.2rem; margin-bottom: 50px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; width: 100%; }

.card { background: white; padding: 35px; border-radius: 12px; border: 1px solid var(--border-light); text-align: center; }
.vision-card i { font-size: 2.5rem; color: var(--leaf-green); margin-bottom: 20px; display: block; }

/* --- PRICING --- */
.price-card.featured { border: 2px solid var(--leaf-green); position: relative; transform: scale(1.05); }
.badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--leaf-green); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
.price { font-size: 2.5rem; font-weight: 700; color: var(--leaf-green); margin: 15px 0; }
.usp-list { list-style: none; margin-bottom: 25px; text-align: left; }
.usp-list li::before { content: '✓'; color: var(--leaf-green); margin-right: 10px; font-weight: bold; }

/* --- FAQ --- */
.faq-item { background: #ffffff; border: 1px solid var(--border-light); border-left: 5px solid var(--leaf-green); padding: 30px; border-radius: 12px; margin-bottom: 20px; text-align: left; }
.faq-question { color: var(--deep-ocean); font-size: 1.15rem; display: block; margin-bottom: 10px; font-weight: 700; }
.faq-content p { color: var(--deep-ocean); font-size: 1rem; font-weight: 400; }

/* --- FOOTER --- */
.main-footer { background: var(--deep-ocean); color: white; padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; }
.footer-lei-link { color: #4db8ff; text-decoration: none; font-family: monospace; }
.footer-bottom { text-align: center; margin-top: 50px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8rem; color: #94a3b8; }

/* --- BUTTONS --- */
.btn-primary { background: var(--deep-ocean); color: white; padding: 14px 28px; border-radius: 8px; text-decoration: none; font-weight: 700; }
.btn-secondary { border: 2px solid var(--deep-ocean); color: var(--deep-ocean); padding: 12px 26px; border-radius: 8px; text-decoration: none; font-weight: 700; }

/* --- DEMO SPECIFIEK --- */
.flag { font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif; font-size: 1.2rem; vertical-align: middle; margin-right: 8px; }

@media (max-width: 900px) { .grid-3, .footer-grid { grid-template-columns: 1fr; } }