/* CSS Variabelen */
:root {
    --primary: #f97316;     /* Orange 500 */
    --secondary: #0ea5e9;   /* Sky 500 */
    --bg-color: #f8fafc;    /* Slate 50 */
    --text-dark: #0f172a;   /* Slate 900 */
    --text-muted: #64748b;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --radius: 16px;
    --radius-lg: 24px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Layout */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    background: transparent;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Logo as clickable brand: remove underline and style the B mark */
.logo {
    text-decoration: none;
}
.logo .brand-mark {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 1.15rem;
    box-shadow: 0 6px 14px rgba(249,115,22,0.12);
    border: 2px solid rgba(0,0,0,0.03);
}
.logo .brand-name {
    font-weight: 800;
    color: var(--text-dark);
    margin-left: 10px;
}

.nav-right { display:flex; align-items:center; gap:16px; }

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 20px;
    font-weight: 500;
}

/* Hero */
.hero {
    padding: 60px 0 100px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mockup {
    width: 280px;
    height: 560px;
    background: #1e293b;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.mockup-screen {
    background: var(--bg-color);
    width: 100%;
    height: 100%;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* Knoppen */
.btn {
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background: #0284c7;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #e2e8f0;
    color: var(--text-dark);
}

.btn-outline:hover {
    border-color: var(--text-dark);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Features */
.features {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 48px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature-card {
    text-align: center;
    border: 1px solid #f1f5f9;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background: #fff7ed;
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 24px;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Business Section */
.business-accent {
    padding: 60px 0;
}

.business-box {
    background: #e0f2fe; /* Light sky blue background */
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
}

.business-box h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    color: #0369a1;
}

.business-box p {
    font-size: 1.15rem;
    color: #0c4a6e;
    max-width: 600px;
    margin: 0 auto 32px;
}

.business-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Form */
.form-section {
    padding: 80px 0;
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
}

.form-card h2 {
    text-align: center;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-family: inherit;
    font-size: 1rem;
    background: #f8fafc;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid #e2e8f0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 12px;
}

.footer-copy {
    margin-top: 30px;
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .hero-text p {
        margin: 0 auto 32px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .business-buttons {
        flex-direction: column;
    }
}

/* Kleine helpers gebruikt door partner-api.html */
.hidden { display: none !important; }
.code-block {
    background: #0f172a;
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    overflow-x: auto;
    font-size: 0.95rem;
}
.inline-code {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 0.95rem;
}

/* Code wrapper and copy button */
.code-wrapper { position: relative; margin-top: 8px; }
.copy-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}
.copy-btn:active { transform: translateY(1px); }



/* Detail secties styling */
.feature-details {
    padding: 60px 0 40px;
}
.feature-details .detail {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(15,23,42,0.04);
    border-left: 4px solid rgba(249,115,22,0.12);
}
.feature-details .detail h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
    color: var(--text-dark);
}
.feature-details .detail-content ul {
    list-style: none;
    padding-left: 0;
}
.feature-details .detail-content ul li {
    padding: 6px 0;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    font-size: 0.98rem;
}
.feature-details .detail-content ul li::before {
    content: "\2022";
    color: var(--primary);
    font-weight: 700;
    display: inline-block;
    width: 20px;
    margin-right: 8px;
    transform: translateY(2px);
}
.back-top {
    text-align: right;
    margin-top: 8px;
}
.back-top a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
}

/* Compact detail layout */
.detail-tagline {
    font-weight: 600;
    color: #0b1724;
    margin-bottom: 8px;
}
.detail-quick {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 8px;
}
.detail-quick .quick-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 12px;
    border: 1px solid #f1f5f9;
    color: var(--text-muted);
    font-size: 0.95rem;
}


