:root {
    --background: #020617;
    --foreground: #ffffff;
    --muted: #94a3b8;
    --primary: #3b82f6;
    --border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    min-height: 100vh;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.15), transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
}

html {
    scroll-behavior: smooth;
}

nav {
    width: 100%;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 20px;
    z-index: 1000;
    padding: 0 20px;
}

.nav-content {
    width: 100%;
    max-width: 750px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1.5rem;
    height: 55px;
}

.logo {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
    transition: background 0.3s ease;
    position: static;
    transform: none;
}

.user-avatar {
    width: 35px;
    height: 35px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.logo:visited {
    color: #94a3b8;
}

.logo:hover {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem 0 2rem;
}

.hero-section {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    padding-top: 4rem;
    margin-bottom: 8rem;
}

.hero-text {
    flex: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(to bottom, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    color: #a7b3c4;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 450px;
}

.highlight { color: #fff; font-style: italic; }

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn-prijzen, .btn-demo {
    padding: 0.7rem 1.4rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: white;
}

.btn-prijzen { 
    background: white; 
    color: black; 
}

.btn-prijzen:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 255, 255, 0.1);
}

.btn-demo { 
    background: rgba(59, 130, 246, 0.1); 
    color: white; 
    border: 1px solid var(--primary);
}

.btn-demo:hover {
    transform: translateY(-2px);
    background: rgba(59, 130, 246, 0.2);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: fadeIn 1.2s ease-out;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 460px;
}

.mockup {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.badge {
    position: absolute;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    padding: 0.6rem 1rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    animation: float 4s ease-in-out infinite;
}

.badge .val { font-weight: bold; font-size: 1rem; color: #fff; }
.badge .lab { color: var(--muted); font-size: 0.65rem; white-space: nowrap; }

.b-top { top: -15px; left: -10px; animation-delay: 0s; }
.b-bottom { bottom: -5px; right: -10px; animation-delay: 1s; }
.b-right { top: 45%; right: -40px; animation-delay: 2s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 1024px) {
    .hero-section { flex-direction: column; text-align: center; padding-top: 2rem; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .cta-buttons { justify-content: center; }
    .hero-visual { margin-top: 4rem; width: 90%; }
    .b-right { display: none; }
}

.pricing-section {
    width: 100%;
    max-width: 1100px;
    margin: 4rem auto 8rem;
    padding: 0;
    scroll-margin-top: 50px;
}

.pricing-title { 
    text-align: center; 
    font-size: 2.5rem; 
    margin-bottom: 4rem; 
    font-weight: 800;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.price-card {
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
}

.pop-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #3b82f6;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 0.4rem 0.8rem;
    border-bottom-left-radius: 8px;
    border-top-right-radius: 11px;
}

.price { 
    font-size: 2.2rem; 
    font-weight: 800; 
    text-align: center; 
    margin: 1.5rem 0; 
    color: #3b82f6; 
}

.price span { 
    font-size: 0.85rem; 
    color: var(--muted); 
    font-weight: 400; 
}

.price-card ul { 
    list-style: none; 
    margin-bottom: 2rem; 
    flex-grow: 1; 
}

.price-card li { 
    font-size: 0.85rem; 
    margin-bottom: 0.8rem; 
    display: flex; 
    align-items: center; 
    gap: 0.8rem; 
}

.check::before { 
    content: "✓"; 
    color: #3b82f6; 
    font-weight: bold; 
}

.cross::before { 
    content: "✕"; 
    color: #475569; 
}

.plan-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    color: var(--muted);
    position: relative;
}

.plan-toggle span.active {
    color: white;
}

/* Tooltip Container */
.info-icon-wrapper {
    position: relative;
    display: inline-flex;
    cursor: help;
}

.tooltip-box {
    visibility: hidden;
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 8px;
    padding: 1.2rem;
    color: white;
    z-index: 10;
    text-align: left;
    opacity: 0;
    transition: opacity 0.2s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.info-icon-wrapper:hover .tooltip-box {
    visibility: visible;
    opacity: 1;
}

.tooltip-box h4 {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.tooltip-section {
    margin-bottom: 1rem;
}

.tooltip-section:last-child {
    margin-bottom: 0;
}

.tooltip-section h5 {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    color: white;
}

.tooltip-section p {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.4;
}

.tooltip-divider {
    height: 1px;
    background: #1e293b;
    margin: 0.8rem 0;
}

/* Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
}

.switch input { opacity: 0; width: 0; height: 0; }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #1e293b;
    transition: .4s;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider { background-color: #000; }
input:checked + .slider:before { transform: translateX(14px); }

.btn-buy {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-buy:not(.primary):hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-buy.primary { 
    background: white; 
    color: black; 
    border: none; 
}

.btn-buy.primary:hover {
    background: #e2e8f0;
}

.help-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 8rem;
    padding: 3rem;
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid var(--border);
    border-radius: 20px;
}

.help-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.help-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.help-text p {
    color: var(--muted);
    max-width: 500px;
    line-height: 1.6;
}

.help-actions {
    display: flex;
    gap: 1rem;
}

.btn-outline {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
    .help-content {
        flex-direction: column;
        text-align: center;
    }
    .help-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-outline {
        justify-content: center;
    }
}

.user-dropdown {
    position: relative;
}

.profile-menu {
    position: absolute;
    right: 0;
    top: 130%;
    width: 240px;
    background: #020617;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    
    /* Animatie */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-dropdown:hover .profile-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    top: 110%;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
}

.user-avatar-small {
    width: 32px;
    height: 32px;
    background-color: transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
}

.user-email {
    font-size: 0.75rem;
    color: var(--muted);
}

.profile-divider {
    height: 1px;
    background: var(--border);
    margin: 5px 0;
}

.profile-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.profile-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.profile-item svg {
    color: var(--muted);
}

.license-valid-banner {
    animation: slideDown 0.3s ease-out;
}
 
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
 
.ac-license-card {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}
 
.ac-license-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 15px;
    color: #ef4444;
}
 