/* ============================================
   NIBERG AI STUDIO — v2 site
   ============================================ */

/* --- Design Tokens --- */
:root {
    --primary: #4F46E5;
    --primary-dark: #3730A3;
    --primary-light: #EEF2FF;
    --primary-glow: rgba(79, 70, 229, 0.15);

    --accent: #7C3AED;
    --accent-soft: #F3E8FF;

    --text: #111827;
    --text-secondary: #4B5563;
    --text-muted: #9CA3AF;

    --bg: #FFFFFF;
    --bg-soft: #F9FAFB;
    --bg-muted: #F3F4F6;
    --bg-dark: #0F172A;

    --border: #E5E7EB;
    --border-light: #F3F4F6;

    --green: #059669;
    --green-light: #ECFDF5;
    --amber: #D97706;
    --amber-light: #FEF3C7;
    --red: #DC2626;
    --red-light: #FEF2F2;

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 50px -12px rgba(0,0,0,0.12);

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.2s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.container-narrow {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    line-height: 1.15;
    font-weight: 700;
    color: var(--text);
    font-family: var(--font-display);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); letter-spacing: -0.025em; }
h3 { font-size: 1.25rem; letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; }

.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* --- Section --- */
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-top: 18px;
    line-height: 1.6;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    gap: 8px;
    white-space: nowrap;
    padding: 13px 24px;
    font-size: 0.95rem;
}

.btn-sm { padding: 10px 18px; font-size: 0.875rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 1px 3px rgba(79, 70, 229, 0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 6px 0;
}
.btn-ghost:hover {
    color: var(--primary);
}

.btn-arrow::after {
    content: '→';
    margin-left: 4px;
    transition: transform var(--transition);
}
.btn-arrow:hover::after {
    transform: translateX(3px);
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.nav.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    display: block;
}

.logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}

.logo-text-accent {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* --- Hero --- */
.hero {
    padding: 130px 0 80px;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, var(--primary-light) 0%, transparent 60%),
        linear-gradient(180deg, #FAFBFF 0%, var(--bg) 100%);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.06) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(79, 70, 229, 0.06) 0%, transparent 30%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: white;
    border: 1px solid var(--border);
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.15);
}

.hero-title {
    margin-bottom: 22px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 60%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 540px;
    line-height: 1.65;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hero-meta {
    display: flex;
    gap: 24px;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--green);
}

/* Hero visual — roles preview */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-stage {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1 / 1.05;
}

.hero-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.04);
    padding: 18px 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-card:hover {
    transform: translateY(-4px) scale(1.02);
    z-index: 10;
}

.hero-card-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
}
.hero-card-icon svg { width: 20px; height: 20px; }

.hero-card-content { flex: 1; }
.hero-card-role {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}
.hero-card-quote {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.45;
    font-weight: 500;
}

.hero-card-1 { top: 0%; left: 0; width: 76%; transform: rotate(-2deg); }
.hero-card-2 { top: 26%; right: 0; width: 78%; transform: rotate(1.5deg); }
.hero-card-3 { top: 52%; left: 4%; width: 76%; transform: rotate(-1deg); }
.hero-card-4 { top: 78%; right: 2%; width: 78%; transform: rotate(2deg); }

.hero-card-2 .hero-card-icon { background: var(--accent-soft); color: var(--accent); }
.hero-card-3 .hero-card-icon { background: var(--green-light); color: var(--green); }
.hero-card-4 .hero-card-icon { background: var(--amber-light); color: var(--amber); }

/* --- Roles section --- */
.section-roles { background: var(--bg); }

.roles-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.role-card {
    position: relative;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text);
    overflow: hidden;
}
.role-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}
.role-card:hover {
    border-color: var(--primary-glow);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    color: var(--text);
}
.role-card:hover::after { opacity: 0.4; }
.role-card > * { position: relative; z-index: 1; }

.role-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.role-icon svg { width: 22px; height: 22px; }

.role-card.role-accent .role-icon { background: var(--accent-soft); color: var(--accent); }
.role-card.role-green .role-icon { background: var(--green-light); color: var(--green); }
.role-card.role-amber .role-icon { background: var(--amber-light); color: var(--amber); }
.role-card.role-teal .role-icon { background: #CCFBF1; color: #0D9488; }

.role-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.role-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-style: italic;
}

.role-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.55;
}

.role-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.role-link::after {
    content: '→';
    transition: transform var(--transition);
}
.role-card:hover .role-link::after { transform: translateX(3px); }

.roles-foot {
    text-align: center;
    margin-top: 40px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.roles-foot strong { color: var(--text); }

/* --- Benefits section --- */
.section-benefits { background: var(--bg-soft); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px 26px;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}
.benefit-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--border);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.benefit-icon svg { width: 20px; height: 20px; }

.benefit-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* --- Steps section --- */
.section-steps { background: var(--bg); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 980px;
    margin: 0 auto;
    counter-reset: step;
}

.step-card {
    position: relative;
    padding: 32px 28px;
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.step-number {
    counter-increment: step;
    position: absolute;
    top: -16px;
    left: 28px;
    width: 36px;
    height: 36px;
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 800;
}

.step-card h3 {
    margin: 16px 0 10px;
    font-size: 1.1rem;
}
.step-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* --- Pricing --- */
.section-pricing { background: var(--bg-soft); }

.pricing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.pricing-toggle-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color var(--transition);
    cursor: pointer;
    user-select: none;
}
.pricing-toggle-label.active { color: var(--text); }

.pricing-toggle {
    width: 52px;
    height: 28px;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: all var(--transition);
}
.pricing-toggle:hover { border-color: var(--primary); }

.pricing-toggle-knob {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
}

.pricing-toggle.active .pricing-toggle-knob {
    transform: translateX(24px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.pricing-card {
    position: relative;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.pricing-featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), var(--shadow);
}

.pricing-card-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pricing-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.pricing-card-icon svg { width: 18px; height: 18px; }

.pricing-card.role-accent .pricing-card-icon { background: var(--accent-soft); color: var(--accent); }
.pricing-card.role-green .pricing-card-icon { background: var(--green-light); color: var(--green); }
.pricing-card.role-amber .pricing-card-icon { background: var(--amber-light); color: var(--amber); }
.pricing-card.role-teal .pricing-card-icon { background: #CCFBF1; color: #0D9488; }

.pricing-card h3 {
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.pricing-prefix {
    display: none;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-right: 4px;
    align-self: center;
    margin-bottom: 4px;
}
.pricing-prefix.visible {
    display: inline-block;
}

.pricing-currency {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
}

.pricing-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    transition: all 0.3s ease;
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 2px;
}

.pricing-anchor {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.pricing-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding-left: 22px;
    position: relative;
    line-height: 1.4;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--green-light);
    border: 2px solid var(--green);
}

.pricing-features li.pro-feature {
    display: none;
}
.pricing-features li.pro-feature.visible {
    display: block;
}
.pricing-features li.pro-feature::before {
    background: var(--primary-light);
    border-color: var(--primary);
}

.pricing-card .btn { margin-top: auto; }

.pricing-foot {
    text-align: center;
    margin-top: 36px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.pricing-foot a { color: var(--primary); font-weight: 500; }

/* --- Calculator --- */
.section-calculator { background: var(--bg); }

.calculator-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    max-width: 980px;
    margin: 0 auto;
    background: var(--bg-soft);
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid var(--border-light);
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.calc-field label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.calc-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: var(--bg-muted);
    border-radius: 100px;
    outline: none;
    transition: all var(--transition);
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(79, 70, 229, 0.3);
    transition: all var(--transition);
}
.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
}

.calc-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(79, 70, 229, 0.3);
}

.calc-value {
    margin-top: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.calc-result-card {
    background: white;
    border-radius: var(--radius);
    padding: 18px 22px;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.calc-result-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.calc-result-value {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.calc-result-negative { color: var(--red); }
.calc-result-positive { color: var(--green); }

.calc-result-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border: none;
    color: white;
}
.calc-result-highlight .calc-result-label { color: rgba(255,255,255,0.85); }
.calc-result-highlight .calc-result-value { color: white; font-size: 1.8rem; }
.calc-result-highlight .calc-result-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
}

/* --- Platform / Onder de motorkap --- */
.section-platform { background: var(--bg); }

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.platform-card {
    background: var(--bg-soft);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    transition: all var(--transition);
}
.platform-card:hover {
    background: white;
    box-shadow: var(--shadow);
    border-color: var(--border);
    transform: translateY(-2px);
}

.platform-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.platform-icon svg { width: 22px; height: 22px; }

.platform-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.platform-card > p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 14px;
}

.platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.platform-tag {
    font-size: 0.72rem;
    color: var(--text-secondary);
    background: white;
    padding: 4px 10px;
    border-radius: 100px;
    font-weight: 500;
    border: 1px solid var(--border);
}

.platform-foot {
    text-align: center;
    margin-top: 40px;
    font-size: 0.92rem;
    color: var(--text-secondary);
}
.platform-foot a { color: var(--primary); font-weight: 600; }

/* --- Studio teaser / Partners teaser --- */
.section-split-teasers { background: var(--bg-soft); }

.teasers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.teaser-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
}
.teaser-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
    transform: translateY(-3px);
    color: inherit;
}

.teaser-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}
.teaser-card.teaser-accent .teaser-eyebrow { color: var(--accent); }

.teaser-card h3 {
    font-size: 1.5rem;
    line-height: 1.25;
}

.teaser-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.teaser-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.teaser-link::after {
    content: '→';
    transition: transform var(--transition);
}
.teaser-card:hover .teaser-link::after { transform: translateX(4px); }
.teaser-card.teaser-accent .teaser-link { color: var(--accent); }

/* --- Manifesto / Positioning statement --- */
.section-manifesto {
    background:
        radial-gradient(ellipse 60% 80% at 50% 50%, rgba(124, 58, 237, 0.06) 0%, transparent 70%),
        var(--bg);
    text-align: center;
}

.manifesto {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.manifesto-quote {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    line-height: 1.45;
    color: var(--text);
    font-weight: 500;
    letter-spacing: -0.015em;
    margin-bottom: 24px;
}

.manifesto-quote em {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
    font-weight: 700;
}

.manifesto-sig {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
}

/* --- Verticals --- */
.section-verticals { background: var(--bg-soft); }

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.vertical-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px 26px;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.vertical-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.vertical-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
}
.vertical-icon svg { width: 22px; height: 22px; }

.vertical-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}
.vertical-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.45;
}

.vertical-role {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.02em;
}

/* --- Trust / About strip --- */
.section-trust { background: var(--bg); }

.trust-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-content h2 {
    margin-bottom: 18px;
}
.trust-content > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 24px;
}

.trust-credentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.trust-credential-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.trust-credential-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.trust-visual {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-soft) 100%);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--border-light);
}

.trust-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
}
.trust-list svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}

.trust-platform {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.5);
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.trust-platform strong { color: var(--text); }

/* --- FAQ --- */
.section-faq { background: var(--bg-soft); }

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 4px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    gap: 16px;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }

.faq-chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 4px 22px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- CTA --- */
.section-cta {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1E1B4B 60%, #312E81 100%);
    color: white;
    position: relative;
    overflow: hidden;
}
.section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(79, 70, 229, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

.cta-content {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-content > p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 36px;
    line-height: 1.6;
}

.cta-form {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: left;
    box-shadow: var(--shadow-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

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

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg);
    transition: border-color var(--transition);
    outline: none;
}

.form-group textarea { min-height: 90px; resize: vertical; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 14px;
}

/* --- Footer --- */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.65);
    padding: 64px 0 28px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 56px;
    margin-bottom: 48px;
}

.footer-brand p {
    margin-top: 14px;
    font-size: 0.9rem;
    max-width: 320px;
    line-height: 1.55;
}

.footer-brand .logo-text { color: white; }
.footer-brand .logo-text-accent { color: #A5B4FC; }

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    color: white;
    font-size: 0.85rem;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.footer-col a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}
.footer-col a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}

.footer-powered {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}
.footer-powered strong { color: rgba(255,255,255,0.65); font-weight: 600; }

/* ============================================
   Sub-page specific
   ============================================ */

/* --- Role page hero --- */
.role-hero {
    padding: 130px 0 70px;
    background:
        radial-gradient(ellipse 70% 60% at 50% 0%, var(--primary-light) 0%, transparent 60%),
        var(--bg);
    position: relative;
}

.role-hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.role-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    background: white;
    border: 1px solid var(--primary-glow);
    padding: 7px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.role-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    margin-bottom: 18px;
}

.role-hero-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 540px;
}

.role-hero-visual {
    background: white;
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.04);
}

.dialog-mock {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dialog-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.85rem;
    color: var(--text-muted);
}
.dialog-header .live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.2);
}

.dialog-line {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.dialog-line.dialog-them { flex-direction: row-reverse; }

.dialog-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}
.dialog-them .dialog-avatar {
    background: var(--bg-muted);
    color: var(--text-secondary);
}

.dialog-bubble {
    background: var(--bg-soft);
    padding: 11px 14px;
    border-radius: 14px;
    font-size: 0.88rem;
    line-height: 1.45;
    max-width: 80%;
    color: var(--text);
}
.dialog-them .dialog-bubble {
    background: var(--primary-light);
    color: var(--text);
}

/* --- Capabilities (role page) --- */
.section-capabilities { background: var(--bg); }

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 980px;
    margin: 0 auto;
}

.capability-card {
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border-light);
    display: flex;
    gap: 18px;
}

.capability-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 10px;
    background: white;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
}
.capability-icon svg { width: 22px; height: 22px; }

.capability-card h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}
.capability-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.55;
}

/* --- Studio page specific --- */
.studio-hero {
    padding: 130px 0 70px;
    background:
        radial-gradient(ellipse 70% 60% at 50% 0%, var(--accent-soft) 0%, transparent 60%),
        var(--bg);
}

.studio-hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flow-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.flow-card {
    background: white;
    border: 1px solid var(--border);
    padding: 36px 32px;
    position: relative;
}
.flow-card:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.flow-card:last-child { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.flow-card + .flow-card { border-left: none; }

.flow-card-num {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.flow-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.flow-card-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.flow-card-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 18px;
}

.flow-card-price {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 600;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
}
.flow-card-price strong { color: var(--accent); }

/* Studio DialoX expertise block */
.dialox-block {
    background: var(--bg-soft);
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid var(--border-light);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.dialox-block h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}
.dialox-block p {
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 18px;
}
.dialox-block ul {
    list-style: none;
    margin: 18px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.dialox-block ul li {
    padding-left: 22px;
    position: relative;
    color: var(--text);
    font-size: 0.95rem;
}
.dialox-block ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.dialox-code {
    background: #0F172A;
    border-radius: var(--radius);
    padding: 24px;
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
    color: #A5B4FC;
    overflow-x: auto;
    line-height: 1.6;
}
.dialox-code .comment { color: #64748B; }
.dialox-code .keyword { color: #C4B5FD; }
.dialox-code .string { color: #86EFAC; }

/* --- Partners page specific --- */
.partners-hero {
    padding: 130px 0 70px;
    background:
        radial-gradient(ellipse 70% 60% at 50% 0%, var(--primary-light) 0%, transparent 60%),
        var(--bg);
    text-align: center;
}

.partners-hero h1 {
    margin-bottom: 18px;
}
.partners-hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.partners-tracks {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
}

.partner-track {
    background: white;
    border-radius: var(--radius-xl);
    padding: 44px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}
.partner-track-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #4338CA 100%);
    border: none;
    color: white;
}
.partner-track-primary h2 { color: white; }
.partner-track-primary .partner-track-eyebrow { color: rgba(255,255,255,0.85); }
.partner-track-primary p { color: rgba(255,255,255,0.85); }
.partner-track-primary .partner-track-list li { color: rgba(255,255,255,0.9); }
.partner-track-primary .partner-track-list li::before { background: rgba(255,255,255,0.25); border-color: white; }

.partner-track-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
}

.partner-track h2 {
    font-size: 1.65rem;
    margin-bottom: 14px;
    line-height: 1.25;
}

.partner-track > p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 22px;
}

.partner-track-list {
    list-style: none;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}
.partner-track-list li {
    padding-left: 24px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
}
.partner-track-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--green-light);
    border: 2px solid var(--green);
}

.partner-track .btn { align-self: flex-start; }
.partner-track-primary .btn {
    background: white;
    color: var(--primary);
}
.partner-track-primary .btn:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.partners-third {
    margin-top: 56px;
    text-align: center;
    padding: 40px;
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}
.partners-third h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.partners-third p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 560px;
    margin: 0 auto 18px;
    line-height: 1.6;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1180px) {
    .roles-grid,
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {

    .hero .container,
    .role-hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-subtitle { margin-bottom: 28px; }

    .calculator-wrap { grid-template-columns: 1fr; gap: 36px; padding: 32px; }

    .trust-wrap { grid-template-columns: 1fr; gap: 36px; }

    .dialox-block { grid-template-columns: 1fr; gap: 32px; padding: 36px; }

    .partners-tracks { grid-template-columns: 1fr; }

    .teasers-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .section-header { margin-bottom: 40px; }

    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }

    .benefits-grid { grid-template-columns: 1fr; }
    .roles-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .verticals-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 28px; }
    .capabilities-grid { grid-template-columns: 1fr; }
    .platform-grid { grid-template-columns: 1fr; }

    .flow-cards { grid-template-columns: 1fr; }
    .flow-card { border-radius: 0; border-left: 1px solid var(--border) !important; }
    .flow-card:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
    .flow-card:last-child { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
    .flow-card + .flow-card { border-top: none; }

    .hero-stage { max-width: 380px; }

    .form-row { grid-template-columns: 1fr; }

    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }

    .trust-credentials { grid-template-columns: repeat(3, 1fr); gap: 12px; }

    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
}

@media (max-width: 480px) {
    .hero { padding: 110px 0 60px; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn { width: 100%; }
    .hero-meta { justify-content: center; }

    .cta-form { padding: 24px 20px; }

    .calculator-wrap { padding: 24px; }

    .partner-track { padding: 32px 24px; }
}

/* ============================================
   Launch additions — nav-phone, hero-stats band,
   mini-pricing strip, trust-line
   ============================================ */

/* --- Telefoonnummer in nav (NL-MKB trust-signaal) --- */
.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    padding: 7px 4px;
    transition: color var(--transition);
}
.nav-phone svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}
.nav-phone:hover { color: var(--primary); }

@media (max-width: 880px) {
    .nav-phone { display: none; }
}

/* --- Hero stats band (pijn-stats direct onder hero) --- */
.hero-stats-band {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
    padding: 0 0 56px;
    margin-top: -20px;
    position: relative;
    z-index: 2;
}

.hero-stats-band .container {
    position: relative;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    box-shadow: var(--shadow);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-stat-label {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.4;
}

.hero-stat-source {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
    }
    .hero-stat {
        padding-bottom: 20px;
        border-bottom: 1px solid var(--border-light);
    }
    .hero-stat:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }
}

/* --- Mini pricing strip (3 tiers op homepage) --- */
.section-mini-pricing { background: var(--bg-soft); }

.mini-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.mini-pricing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: left;
    transition: transform var(--transition), box-shadow var(--transition);
}
.mini-pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.mini-pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
    position: relative;
}

/* Tag drijft boven de bovenrand uit zodat de role-titel op gelijke hoogte
   blijft staan met de andere cards in de rij. */
.mini-pricing-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.72rem;
    font-weight: 700;
    color: white;
    background: var(--primary);
    padding: 5px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
    box-shadow: var(--shadow);
}

.mini-pricing-role {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.mini-pricing-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.mini-pricing-price .prefix {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-right: 4px;
}
.mini-pricing-price .period {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mini-pricing-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0;
}

.mini-pricing-foot {
    text-align: center;
    margin-top: 32px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .mini-pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* --- Voetnoot bij beloftes die alleen voor Base gelden --- */
.hero-meta-foot,
.section-foot-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.5;
}
.section-foot-note {
    text-align: center;
    margin-top: 20px;
}

/* --- Pro-uitleg-blok onder "Wat zit altijd inbegrepen" --- */
.pro-note {
    background: white;
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 22px 26px;
    margin: 32px auto 0;
    max-width: 720px;
}
.pro-note h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--text);
}
.pro-note p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

/* --- Footer trust line (KvK + AVG) --- */
.footer-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-top: 12px;
}
.footer-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-trust svg {
    width: 13px;
    height: 13px;
    color: rgba(255,255,255,0.5);
}
