/* =====================
   HERO
   ===================== */
.biz-hero {
    padding: 60px 0 90px;
    background: linear-gradient(160deg, #ffffff 0%, #f0f9ff 60%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.biz-hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.biz-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.biz-shape-1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #bae6fd, transparent);
    top: -100px;
    right: -60px;
}

.biz-shape-2 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #fed7aa, transparent);
    bottom: -40px;
    left: 8%;
}

.biz-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 48px;
}

.biz-hero-text {
    flex: 1;
}

.biz-hero-text h1 {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.biz-hero-text > p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.75;
    margin-bottom: 36px;
}

.biz-hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Phone mockup */
.biz-hero-visual {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

.biz-phone-mockup {
    width: 300px;
    background: #1e293b;
    border-radius: 36px;
    padding: 14px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

.biz-phone-screen {
    background: #f8fafc;
    border-radius: 24px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.biz-phone-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.biz-phone-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
}

.biz-phone-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-dark);
}

.biz-feed {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.biz-feed-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
}

.biz-feed-news { background: #fff7ed; }
.biz-feed-event { background: #f0fdf4; }

.biz-feed-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.biz-feed-news .biz-feed-icon { background: #fed7aa; color: #c2410c; }
.biz-feed-event .biz-feed-icon { background: #bbf7d0; color: #15803d; }

.biz-feed-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}

.biz-feed-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.biz-phone-badge {
    background: #dcfce7;
    color: #15803d;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 8px;
    text-align: center;
    margin-top: 4px;
}

/* =====================
   PERKS STRIP
   ===================== */
.biz-perks-strip {
    background: #fff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 18px 0;
}

.biz-perks-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.biz-perk {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.biz-perk i {
    color: var(--secondary);
    font-size: 1rem;
}

.biz-perk-divider {
    width: 1px;
    height: 28px;
    background: #e2e8f0;
}

/* =====================
   SECTIONS
   ===================== */
.biz-section {
    padding: 80px 0;
}

.biz-section-alt {
    background: #f8fafc;
}

/* =====================
   VOOR WIE
   ===================== */
.biz-who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.biz-who-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.biz-who-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(14,165,233,0.1);
    border-color: #bae6fd;
}

.biz-who-icon {
    width: 52px;
    height: 52px;
    background: #f0f9ff;
    color: var(--secondary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.biz-who-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.biz-who-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =====================
   STAPPEN
   ===================== */
.biz-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.biz-step {
    flex: 1;
    min-width: 180px;
    max-width: 240px;
    text-align: center;
    padding: 28px 20px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.biz-step-num {
    font-size: 3rem;
    font-weight: 900;
    color: #bae6fd;
    line-height: 1;
    margin-bottom: 6px;
}

.biz-step-icon {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 14px;
}

.biz-step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.biz-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* =====================
   TABS (content types)
   ===================== */
.biz-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 0;
}

.biz-tab {
    padding: 12px 24px;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.biz-tab:hover {
    color: var(--text-dark);
}

.biz-tab-active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.biz-tab-panel-hidden {
    display: none;
}

.biz-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.biz-content-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.biz-content-info > p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.biz-field-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.biz-field-group {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
}

.biz-field-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.biz-required { color: #22c55e; }
.biz-optional { color: #94a3b8; }

.biz-field-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.biz-field-group ul li {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 4px 0;
    border-bottom: 1px solid #f1f5f9;
    line-height: 1.5;
}

.biz-field-group ul li:last-child {
    border-bottom: none;
}

.biz-note {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.88rem;
    color: #0369a1;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

/* Example cards */
.biz-example-card {
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

.biz-example-news { background: #fff7ed; }
.biz-example-event { background: #f0fdf4; }

.biz-example-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.biz-example-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
}

.biz-badge-news { background: #fed7aa; color: #c2410c; }
.biz-badge-event { background: #bbf7d0; color: #15803d; }

.biz-example-prov {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255,255,255,0.7);
    padding: 3px 8px;
    border-radius: 999px;
}

.biz-example-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.35;
}

.biz-example-body {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.biz-example-meta {
    display: flex;
    gap: 14px;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.biz-example-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* =====================
   METHODE
   ===================== */
.biz-method-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 0;
}

.biz-method-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    border: 2px solid #f1f5f9;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.biz-method-card-featured {
    border-color: var(--secondary);
    box-shadow: 0 8px 30px rgba(14,165,233,0.12);
}

.biz-method-badge-featured {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

.biz-method-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.biz-method-icon-orange { background: #fff7ed; color: var(--primary); }
.biz-method-icon-blue   { background: #f0f9ff; color: var(--secondary); }

.biz-method-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.biz-method-card > p {
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.biz-method-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.biz-method-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.biz-method-list li i {
    color: #22c55e;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.biz-method-footer {
    margin-top: auto;
}

.biz-method-tag {
    display: inline-block;
    background: #fff7ed;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid #fed7aa;
}

.biz-api-toggle {
    width: 100%;
    justify-content: center;
    gap: 8px;
}

/* API docs panel */
.biz-api-docs {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    margin-top: 0;
}

.biz-api-docs.open {
    max-height: 3000px;
    margin-top: 24px;
}

.biz-api-inner {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.biz-api-section h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
}

.biz-api-section h4 i {
    color: var(--secondary);
}

.biz-api-steps {
    list-style: none;
    padding: 0;
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.biz-api-steps li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
    counter-increment: step;
}

.biz-api-steps li::before {
    content: counter(step);
    min-width: 26px;
    height: 26px;
    background: var(--secondary);
    color: #fff;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.biz-error-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.biz-error-row {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.biz-error-row:last-child { border-bottom: none; }

.biz-error-code {
    font-weight: 700;
    font-size: 0.85rem;
    padding: 3px 10px;
    border-radius: 6px;
    min-width: 46px;
    text-align: center;
    font-family: monospace;
}

.biz-code-ok   { background: #dcfce7; color: #15803d; }
.biz-code-warn { background: #fef9c3; color: #92400e; }
.biz-code-err  { background: #fee2e2; color: #b91c1c; }

.biz-rules {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.biz-rules li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.biz-rules li::before {
    content: "·";
    position: absolute;
    left: 6px;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    top: -1px;
}

/* =====================
   TARIEVEN
   ===================== */
.biz-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.biz-pricing-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    border: 2px solid #f1f5f9;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.biz-pricing-card-featured {
    border-color: #fed7aa;
    box-shadow: 0 8px 30px rgba(249,115,22,0.1);
}

.biz-pricing-icon {
    width: 56px;
    height: 56px;
    background: #fff7ed;
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto;
}

.biz-pricing-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.biz-pricing-free {
    font-size: 1rem;
    font-weight: 700;
    color: #15803d;
    background: #dcfce7;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    align-self: center;
}

.biz-pricing-card > p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    flex: 1;
}

.biz-pricing-btn {
    align-self: center;
    font-size: 0.9rem;
    padding: 10px 20px;
}

/* =====================
   CTA
   ===================== */
.biz-cta {
    padding: 80px 0;
}

.biz-cta-box {
    background: linear-gradient(135deg, #0ea5e9 0%, #0369a1 100%);
    border-radius: var(--radius-lg);
    padding: 64px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.biz-cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.biz-cta-shape-1,
.biz-cta-shape-2 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.biz-cta-shape-1 { width: 300px; height: 300px; top: -100px; right: -60px; }
.biz-cta-shape-2 { width: 200px; height: 200px; bottom: -80px; left: 5%; }

.biz-cta-content {
    position: relative;
    z-index: 1;
}

.biz-cta-box h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.biz-cta-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
}

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

.biz-cta-login {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.biz-cta-login:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

/* Active nav link */
.nav-active {
    color: var(--primary) !important;
    font-weight: 700 !important;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
    .biz-content-grid {
        grid-template-columns: 1fr;
    }

    .biz-example-card {
        position: static;
    }

    .biz-method-grid {
        grid-template-columns: 1fr;
    }

    .biz-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    .biz-hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .biz-hero-text h1 {
        font-size: 2.4rem;
    }

    .biz-hero-text > p {
        margin-left: auto;
        margin-right: auto;
    }

    .biz-hero-buttons {
        justify-content: center;
    }

    .biz-phone-mockup {
        width: 260px;
    }

    .biz-perks-inner {
        gap: 0;
    }

    .biz-perk {
        padding: 8px 14px;
    }

    .biz-perk-divider {
        display: none;
    }

    .biz-steps {
        flex-direction: column;
        align-items: stretch;
    }

    .biz-step {
        max-width: 100%;
    }

    .step-divider {
        transform: rotate(90deg);
        padding: 4px 0;
        text-align: center;
    }

    .biz-field-list {
        grid-template-columns: 1fr;
    }

    .biz-cta-box {
        padding: 40px 24px;
    }

    .biz-cta-box h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .biz-hero-text h1 {
        font-size: 2rem;
    }

    .biz-who-grid {
        grid-template-columns: 1fr;
    }

    .biz-tabs {
        flex-direction: column;
        border-bottom: none;
        gap: 4px;
    }

    .biz-tab {
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        margin-bottom: 0;
        justify-content: center;
    }

    .biz-tab-active {
        background: #fff7ed;
        border-color: #fed7aa;
        border-bottom-color: #fed7aa;
    }
}
