/* ── MIZORA BUSINESS PARTNER PAGE ─────────────────────────── */

/* Hero */
.bp-hero {
    position: relative; overflow: hidden;
    height: 52vh; min-height: 320px;
    background: var(--mz-black);
}
.bp-hero img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    filter: brightness(.35);
}
.bp-hero-text {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: flex-start; justify-content: flex-end;
    padding: 0 0 52px;
}
.bp-hero-text .container { width: 100%; }
.bp-hero-text h1 {
    font-family: var(--mz-font-display);
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 300;
    color: var(--mz-white);
    letter-spacing: -.02em;
    line-height: 1.1;
    margin: 0 0 16px;
}
.bp-hero-text p {
    font-size: 13px; font-weight: 300;
    color: rgba(255,255,255,.45);
    letter-spacing: .06em;
    margin: 0;
}

/* Divider */
.bp-divider { height: 1px; background: var(--mz-hairline); }

/* Section label */
.bp-label {
    font-size: 10px; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--mz-muted);
    display: block; margin-bottom: 20px;
}

/* Intro */
.bp-intro { padding: 80px 0; }
.bp-intro h2 {
    font-family: var(--mz-font-display);
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 300; letter-spacing: -.015em;
    color: var(--mz-ink); line-height: 1.2;
    margin: 0 0 24px;
}
.bp-intro p {
    font-size: 14px; font-weight: 300;
    color: var(--mz-muted); line-height: 1.85;
    margin: 0 0 14px;
}
.bp-intro p:last-child { margin-bottom: 0; }

/* Benefit list */
.bp-benefit-list { list-style: none; padding: 0; margin: 0; }
.bp-benefit-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px 0; border-bottom: 1px solid var(--mz-hairline);
    font-size: 13px; color: var(--mz-ink); font-weight: 400;
    line-height: 1.6;
}
.bp-benefit-list li:first-child { border-top: 1px solid var(--mz-hairline); }
.bp-benefit-list li::before {
    content: '—'; color: var(--mz-muted);
    font-weight: 300; flex-shrink: 0; margin-top: 1px;
}

/* Komisi */
.bp-commission { padding: 80px 0; background: var(--mz-surface); }
.bp-commission-row {
    display: flex; align-items: baseline; gap: 32px;
    padding: 28px 0; border-bottom: 1px solid var(--mz-hairline);
}
.bp-commission-row:first-of-type { border-top: 1px solid var(--mz-hairline); }
.bp-commission-fig {
    flex-shrink: 0; min-width: 80px;
    font-size: 28px; font-weight: 600;
    color: var(--mz-ink); letter-spacing: -.03em; line-height: 1;
}
.bp-commission-fig small { font-size: 16px; }
.bp-commission-desc h4 {
    font-size: 13px; font-weight: 600;
    color: var(--mz-ink); margin: 0 0 4px;
}
.bp-commission-desc p {
    font-size: 13px; font-weight: 300;
    color: var(--mz-muted); line-height: 1.7; margin: 0;
}

/* Bundle cards */
.bp-bundles { padding: 80px 0; }
.bp-notice {
    display: flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 300; color: var(--mz-muted);
    margin-bottom: 40px;
}
.bp-notice::before {
    content: ''; display: block; width: 24px; height: 1px;
    background: var(--mz-muted); flex-shrink: 0;
}
.bp-cards {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--mz-hairline);
    border-top: 1px solid var(--mz-hairline);
    border-bottom: 1px solid var(--mz-hairline);
}
.bp-card { background: #fff; }
.bp-card-img { aspect-ratio: 3/2; overflow: hidden; background: var(--mz-surface); position: relative; }
.bp-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.bp-card:hover .bp-card-img img { transform: scale(1.04); }
.bp-card-img-empty { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--mz-muted-soft); }
.bp-card-discount { position: absolute; top: 0; left: 0; background: var(--mz-ink); color: #fff; font-size: 9px; font-weight: 700; padding: 4px 8px; letter-spacing: .08em; }
.bp-card-body { padding: 20px; border-top: 1px solid var(--mz-hairline); }
.bp-card-name { font-size: 13px; font-weight: 600; color: var(--mz-ink); margin: 0 0 6px; }
.bp-card-desc { font-size: 12px; font-weight: 300; color: var(--mz-muted); line-height: 1.65; margin: 0 0 12px; }
.bp-card-items { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-direction: column; gap: 4px; }
.bp-card-items li { font-size: 11px; color: var(--mz-muted); display: flex; align-items: center; gap: 8px; }
.bp-card-items li::before { content: ''; width: 3px; height: 3px; border-radius: 50%; background: var(--mz-muted-soft); flex-shrink: 0; }
.bp-card-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 2px; }
.bp-card-price { font-size: 18px; font-weight: 600; color: var(--mz-ink); letter-spacing: -.02em; }
.bp-card-original { font-size: 11px; color: var(--mz-muted-soft); text-decoration: line-through; }
.bp-card-savings { font-size: 11px; font-weight: 300; color: var(--mz-muted); margin: 2px 0 16px; }
.bp-card-cta {
    display: block; width: 100%; padding: 10px;
    text-align: center; font-size: 10px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    background: var(--mz-ink); color: #fff; border: none;
    cursor: pointer; transition: background .2s;
}
.bp-card-cta:hover { background: #333; }

/* FAQ */
.bp-faq { padding: 80px 0; background: var(--mz-surface); }
.bp-faq-item { border-bottom: 1px solid var(--mz-hairline); }
.bp-faq-item:first-of-type { border-top: 1px solid var(--mz-hairline); }
.bp-faq-btn {
    width: 100%; background: none; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 0; gap: 16px; text-align: left;
}
.bp-faq-q {
    font-size: 14px; font-weight: 400;
    color: var(--mz-ink); line-height: 1.5;
    transition: color .2s;
}
.bp-faq-btn:hover .bp-faq-q { color: var(--mz-muted); }
.bp-faq-icon { flex-shrink: 0; color: var(--mz-muted); transition: transform .25s; }
.bp-faq-btn.open .bp-faq-icon { transform: rotate(45deg); }
.bp-faq-a { display: none; padding-bottom: 20px; }
.bp-faq-a.open { display: block; }
.bp-faq-a p { font-size: 13px; font-weight: 300; color: var(--mz-muted); line-height: 1.8; margin: 0; }

/* CTA */
.bp-cta { margin: 80px 0; padding: 52px; background: var(--mz-surface); text-align: center; }
.bp-cta h3 {
    font-family: var(--mz-font-display);
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 300; color: var(--mz-ink);
    margin: 0 0 10px;
}
.bp-cta p {
    font-size: 13px; font-weight: 300;
    color: var(--mz-muted); margin: 0 0 28px;
}

/* Modal */
.bp-modal-overlay {
    position: fixed; inset: 0; z-index: 9999;
    display: none; align-items: flex-start; justify-content: center;
    padding: 24px 16px 48px; background: rgba(0,0,0,.6);
    overflow-y: auto;
}
.bp-modal-overlay.open { display: flex; }
.bp-modal {
    background: #fff; width: 100%; max-width: 640px;
    margin: auto; box-shadow: 0 24px 80px rgba(0,0,0,.2);
}
.bp-modal-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 24px; border-bottom: 1px solid var(--mz-hairline);
    position: sticky; top: 0; background: #fff; z-index: 1;
}
.bp-modal-head h2 { font-size: 14px; font-weight: 600; color: var(--mz-ink); margin: 0; }
.bp-modal-close {
    width: 30px; height: 30px; border: 1px solid var(--mz-hairline);
    background: transparent; display: flex; align-items: center;
    justify-content: center; cursor: pointer; color: var(--mz-muted);
    transition: .15s;
}
.bp-modal-close:hover { background: var(--mz-surface); }
.bp-modal-body { padding: 24px; }
.bp-modal-summary {
    display: flex; gap: 24px; flex-wrap: wrap;
    padding: 16px 0; margin-bottom: 24px;
    border-bottom: 1px solid var(--mz-hairline);
}
.bp-modal-summary-item label {
    font-size: 9px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .14em; color: var(--mz-muted); display: block; margin-bottom: 4px;
}
.bp-modal-summary-item .val { font-size: 15px; font-weight: 600; color: var(--mz-ink); }
.bp-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bp-form-group { display: flex; flex-direction: column; gap: 6px; }
.bp-form-group.full { grid-column: 1 / -1; }
.bp-form-group label {
    font-size: 9px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .12em; color: var(--mz-muted);
}
.bp-form-input {
    padding: 10px 12px; border: 1px solid var(--mz-hairline);
    font-size: 13px; font-weight: 400; color: var(--mz-ink);
    background: #fff; transition: border-color .15s;
    font-family: inherit; width: 100%; border-radius: 0;
}
.bp-form-input:focus { outline: none; border-color: var(--mz-ink); }
.bp-form-section {
    font-size: 9px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .14em; color: var(--mz-muted);
    grid-column: 1 / -1; margin-top: 10px;
    padding-top: 18px; border-top: 1px solid var(--mz-hairline);
}
.bp-checkbox-row { display: flex; align-items: flex-start; gap: 10px; grid-column: 1 / -1; }
.bp-checkbox-row input { width: 14px; height: 14px; margin-top: 2px; flex-shrink: 0; accent-color: var(--mz-ink); }
.bp-checkbox-row label { font-size: 12px; font-weight: 300; color: var(--mz-muted); line-height: 1.6; }
.bp-modal-foot { padding: 0 24px 24px; }
.bp-form-error {
    display: none; font-size: 12px; font-weight: 300;
    color: #991b1b; padding: 10px 14px;
    border: 1px solid #fecaca; background: #fef2f2;
    margin-bottom: 12px;
}
.bp-submit {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 13px 24px;
    background: var(--mz-ink); color: #fff;
    font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    border: none; cursor: pointer; transition: background .18s; font-family: inherit;
}
.bp-submit:hover { background: #333; }
.bp-submit:disabled { opacity: .4; cursor: not-allowed; }
.bp-spinner { width: 14px; height: 14px; border: 2px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; animation: bp-spin .7s linear infinite; display: none; }
@keyframes bp-spin { to { transform: rotate(360deg); } }

/* Responsive */
@media (max-width: 991px) {
    .bp-hero { height: 40vw; min-height: 240px; }
    .bp-cards { grid-template-columns: 1fr 1fr; }
    .bp-cta { padding: 40px 24px; }
}
@media (max-width: 576px) {
    .bp-hero-text h1 { font-size: 28px; }
    .bp-commission-row { flex-direction: column; gap: 8px; }
    .bp-cards { grid-template-columns: 1fr; }
    .bp-form-grid { grid-template-columns: 1fr; }
}
