@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600;700;800;900&display=swap');
.qp-wrap {
    direction: rtl;
    max-width: 760px;
    margin: 32px auto;
    color: #111820;
    font-family: inherit;
}

.qp-form {
    display: grid;
    gap: 18px;
}

.qp-form label {
    display: grid;
    gap: 7px;
    font-weight: 700;
}

.qp-form input,
.qp-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #c9d2dc;
    border-radius: 6px;
    padding: 11px 12px;
    font: inherit;
    background: #fff;
}

.qp-form textarea {
    resize: vertical;
}

.qp-form button {
    width: fit-content;
    border: 0;
    border-radius: 6px;
    padding: 12px 22px;
    background: #22a846;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.qp-form button:hover {
    background: #147a30;
}

.qp-notice {
    margin: 0 0 20px;
    border-radius: 6px;
    padding: 13px 15px;
    border: 1px solid transparent;
}

.qp-notice-success {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #065f46;
}

.qp-notice-error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.qp-quote-view {
    border: 1px solid #d8e0e8;
    border-radius: 8px;
    padding: 28px;
    background: #fff;
}

.qp-quote-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: start;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 18px;
    margin-bottom: 20px;
}

.qp-kicker {
    display: block;
    margin-bottom: 5px;
    color: #22a846;
    font-weight: 700;
}

.qp-quote-header h2 {
    margin: 0;
}

.qp-status {
    border-radius: 999px;
    background: #e0f2fe;
    color: #075985;
    padding: 6px 11px;
    white-space: nowrap;
    font-size: 14px;
}

.qp-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 22px;
    margin: 0 0 24px;
}

.qp-meta div {
    border-bottom: 1px solid #eef2f6;
    padding-bottom: 9px;
}

.qp-meta dt {
    color: #5d6874;
    font-size: 13px;
}

.qp-meta dd {
    margin: 3px 0 0;
    font-weight: 700;
}

.qp-content {
    line-height: 1.75;
}

@media (max-width: 640px) {
    .qp-quote-header {
        display: block;
    }

    .qp-status {
        display: inline-block;
        margin-top: 12px;
    }

    .qp-meta {
        grid-template-columns: 1fr;
    }
}

.qp-wrap, .qp-wrap * { font-family: Heebo, Arial, sans-serif !important; }
.qp-wrap { max-width: 900px; }
.qp-form, .qp-quote-view { border: 1px solid #dfe5ea; border-radius: 8px; background: #fff; padding: 26px; box-shadow: 0 18px 60px rgba(16,24,33,.10); }
.qp-form button { min-height: 46px; font-weight: 900; }
