.rfq-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #f1f5f9 0%, #fff 50%);
    padding-bottom: 3rem;
}
.rfq-hero {
    background: linear-gradient(135deg, #062b2d 0%, #0f172a 100%);
    color: #fff;
    padding: 3rem 0 4.75rem;
}
.rfq-hero h1 {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 950;
    letter-spacing: -.04em;
    margin-bottom: .65rem;
}
.rfq-hero p {
    color: rgba(255,255,255,.78);
    max-width: 42rem;
    margin: 0;
    line-height: 1.65;
    font-size: 1.02rem;
}
.rfq-card {
    max-width: 52rem;
    margin: -2.75rem auto 0;
    border: 1px solid #e2e8f0;
    border-radius: 1.15rem;
    background: #fff;
    box-shadow: 0 20px 56px rgba(15,23,42,.1);
    overflow: hidden;
    position: relative;
}
.rfq-loading {
    position: absolute;
    inset: 0;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(2px);
}
.rfq-loading[hidden], .rfq-errors[hidden] { display: none !important; }
.rfq-stepper {
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding: 1.1rem .85rem 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    overflow-x: auto;
    scrollbar-width: none;
}
.rfq-stepper::-webkit-scrollbar { display: none; }
.rfq-stepper__item {
    flex: 1;
    min-width: 4.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .35rem;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    font: inherit;
    color: inherit;
}
.rfq-stepper__item:disabled {
    cursor: default;
    opacity: .55;
}
.rfq-stepper__item.is-skipped {
    display: none;
}
.rfq-stepper__item:not(:disabled):not(.is-current):hover .rfq-stepper__num {
    background: #b8e0e2;
    color: #014909;
}
.rfq-staff-list { display: grid; gap: .65rem; }
.rfq-staff-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 8rem;
    gap: .75rem;
    align-items: center;
    padding: .65rem .85rem;
    border: 1px solid #e2e8f0;
    border-radius: .65rem;
    background: #fff;
}
.rfq-staff-row__label {
    font-size: .875rem;
    font-weight: 700;
    color: #0f172a;
}
.rfq-staff-row__input { text-align: center; }
.rfq-stepper__num {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 800;
    background: #e2e8f0;
    color: #64748b;
    transition: background .2s, box-shadow .2s, color .2s;
}
.rfq-stepper__label {
    font-size: .62rem;
    font-weight: 700;
    color: #64748b;
    line-height: 1.25;
    max-width: 5.5rem;
}
.rfq-stepper__line {
    flex: 0 0 .85rem;
    height: 2px;
    background: #e2e8f0;
    margin-top: .98rem;
    transition: background .2s;
}
.rfq-stepper__item.is-done .rfq-stepper__num,
.rfq-stepper__item.is-current .rfq-stepper__num {
    background: #018D12;
    color: #fff;
}
.rfq-stepper__item.is-current .rfq-stepper__num {
    box-shadow: 0 0 0 4px rgba(1,141,18,.18);
}
.rfq-stepper__item.is-done .rfq-stepper__label,
.rfq-stepper__item.is-current .rfq-stepper__label {
    color: #0f172a;
}
.rfq-progress {
    height: 3px;
    background: #e2e8f0;
}
.rfq-progress__bar {
    height: 100%;
    background: linear-gradient(90deg, #018D12, #0d9488);
    transition: width .35s ease;
}
.rfq-card__body { padding: 1.35rem 1.5rem 1.5rem; }
.rfq-step-meta {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #018D12;
    margin: 0 0 1rem;
}
.rfq-step { display: none !important; animation: rfqFadeIn .25s ease; }
.rfq-step.is-active { display: block !important; }
.rfq-step[hidden] { display: none !important; }
.rfq-actions [hidden] { display: none !important; }
@keyframes rfqFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}
.rfq-step-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .35rem;
    color: #0f172a;
    letter-spacing: -.02em;
}
.rfq-step-lead {
    color: #64748b;
    font-size: .92rem;
    margin-bottom: 1.25rem;
    line-height: 1.55;
}
.rfq-subtitle {
    font-size: .95rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: .5rem;
}
.rfq-section {
    padding: 1.15rem 0;
    border-top: 1px solid #f1f5f9;
}
.rfq-section:first-of-type { border-top: 0; padding-top: 0; }
.rfq-section-lead {
    color: #64748b;
    font-size: .85rem;
    margin: -.15rem 0 .85rem;
    line-height: 1.5;
}
.rfq-duplicate-list {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}
.rfq-duplicate-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .65rem;
    padding: .75rem .9rem;
    border: 1px solid #e2e8f0;
    border-radius: .75rem;
    background: #f8fafc;
}
.rfq-duplicate-row__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: .45rem .75rem;
    min-width: 0;
    font-size: .9rem;
}
.rfq-label {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: .4rem;
}
.rfq-label .req { color: #dc2626; }
.rfq-type-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
}
@media (min-width: 540px) {
    .rfq-type-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.rfq-type-card {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    border: 2px solid #e2e8f0;
    border-radius: .85rem;
    padding: 1rem 1.05rem;
    cursor: pointer;
    transition: border-color .15s, background .15s, box-shadow .15s;
    background: #fff;
}
.rfq-type-card:hover {
    border-color: #b8e0e2;
    background: #fafefe;
}
.rfq-type-card:has(input:checked) {
    border-color: #018D12;
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 100%);
    box-shadow: 0 4px 16px rgba(1,141,18,.1);
}
.rfq-type-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.rfq-type-card__icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    color: #475569;
    font-size: 1.15rem;
    transition: background .15s, color .15s;
}
.rfq-type-card:has(input:checked) .rfq-type-card__icon {
    background: #018D12;
    color: #fff;
}
.rfq-type-card__body { min-width: 0; }
.rfq-type-card__label {
    display: block;
    font-weight: 800;
    font-size: .92rem;
    color: #0f172a;
    margin-bottom: .2rem;
}
.rfq-type-card__desc {
    display: block;
    font-size: .78rem;
    color: #64748b;
    line-height: 1.4;
}
.rfq-skip-link {
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    color: #018D12 !important;
}
.rfq-skip-link:hover { text-decoration: underline; }
.rfq-check-grid {
    display: grid;
    gap: .5rem;
    max-height: min(22rem, 50vh);
    overflow-y: auto;
    padding: .35rem .15rem .35rem .35rem;
    margin-bottom: .5rem;
    border: 1px solid #e2e8f0;
    border-radius: .65rem;
    background: #fafafa;
    scrollbar-width: thin;
    scrollbar-color: #94a3b8 #f1f5f9;
}
.rfq-check-grid::-webkit-scrollbar { width: 7px; }
.rfq-check-grid::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 999px;
}
.rfq-check-grid::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 999px;
}
.rfq-check-grid::-webkit-scrollbar-thumb:hover { background: #64748b; }
.rfq-check {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .65rem .85rem;
    border: 1px solid #e2e8f0;
    border-radius: .6rem;
    font-size: .875rem;
    cursor: pointer;
    transition: border-color .15s, background .15s;
}
.rfq-check:has(input:checked) {
    border-color: #018D12;
    background: #f0fdfa;
}
.rfq-choice-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.rfq-choice-row--cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
}
@media (min-width: 480px) {
    .rfq-choice-row--cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.rfq-choice { font-weight: 600; font-size: .9rem; cursor: pointer; }
.rfq-choice-card {
    display: block;
    border: 2px solid #e2e8f0;
    border-radius: .75rem;
    padding: .95rem 1rem;
    cursor: pointer;
    transition: border-color .15s, background .15s;
}
.rfq-choice-card:has(input:checked) {
    border-color: #018D12;
    background: #f0fdfa;
}
.rfq-choice-card input { margin-right: .35rem; }
.rfq-choice-card__title {
    display: block;
    font-weight: 800;
    font-size: .9rem;
    color: #0f172a;
}
.rfq-choice-card__desc {
    display: block;
    font-size: .78rem;
    color: #64748b;
    margin-top: .25rem;
    line-height: 1.4;
}
.rfq-search {
    position: relative;
    margin-bottom: 1rem;
}
.rfq-search__icon {
    position: absolute;
    left: .75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    z-index: 2;
}
.rfq-search__input {
    padding-left: 2.35rem !important;
    border-radius: .65rem !important;
}
.rfq-suggestions {
    position: absolute;
    z-index: 20;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    border: 1px solid #e2e8f0;
    border-radius: .65rem;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15,23,42,.12);
    max-height: 240px;
    overflow: auto;
}
.rfq-suggestions:empty { display: none; }
.rfq-suggestion {
    display: block;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #f1f5f9;
    background: #fff;
    padding: .65rem .85rem;
    text-align: left;
    font-size: .875rem;
    cursor: pointer;
}
.rfq-suggestion:hover { background: #f0fdfa; }
.rfq-list-wrap {
    border: 1px solid #e2e8f0;
    border-radius: .65rem;
    overflow: hidden;
    background: #fafafa;
}
.rfq-list { overflow: hidden; background: #fff; }
.rfq-list:empty { display: none; }
.rfq-list__empty {
    font-size: .875rem;
    color: #94a3b8;
    padding: 1rem .85rem;
    text-align: center;
}
.rfq-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem .85rem;
    border-bottom: 1px solid #f1f5f9;
    font-size: .875rem;
}
.rfq-item:last-child { border-bottom: 0; }
.rfq-item__name { flex: 1; min-width: 0; font-weight: 600; }
.rfq-item__qty { width: 5.5rem; }
.rfq-list__head {
    display: grid;
    grid-template-columns: minmax(0,1fr) 5.5rem 1.5rem;
    gap: .5rem;
    padding: .5rem .85rem;
    font-size: .7rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}
.rfq-upload {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    padding: 1.5rem 1rem;
    border: 2px dashed #cbd5e1;
    border-radius: .85rem;
    background: #f8fafc;
    cursor: pointer;
    text-align: center;
    transition: border-color .15s, background .15s;
}
.rfq-upload:hover,
.rfq-upload.is-dragover {
    border-color: #018D12;
    background: #f0fdfa;
}
.rfq-upload__input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.rfq-upload__icon {
    font-size: 1.75rem;
    color: #018D12;
    line-height: 1;
}
.rfq-upload__title {
    font-weight: 700;
    font-size: .9rem;
    color: #0f172a;
}
.rfq-upload__hint {
    font-size: .78rem;
    color: #64748b;
}
.rfq-file-list { margin-top: .65rem; }
.rfq-file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .45rem .65rem;
    font-size: .875rem;
    border: 1px solid #e2e8f0;
    border-radius: .5rem;
    background: #fff;
    margin-bottom: .35rem;
}
.rfq-file-item:last-child { margin-bottom: 0; }
.rfq-actions {
    display: flex;
    gap: .75rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f1f5f9;
}
.rfq-actions .btn { flex: 1; min-height: 2.75rem; }
.rfq-actions .btn-outline-secondary {
    flex: 0 1 auto;
    min-width: 6.5rem;
}
@media (min-width: 480px) {
    .rfq-actions .btn-primary-action { flex: 2; }
}
.rfq-otp-row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
}
.rfq-otp-input { max-width: 8.5rem; }
.rfq-verified-banner {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1rem;
    border-radius: .65rem;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    font-size: .875rem;
    font-weight: 600;
}
.rfq-verified-banner i { color: #059669; }
.rfq-page .kenya-map-picker__canvas { height: 300px; border-radius: .75rem; }
.rfq-page .veo-field-error { color: #dc2626; font-size: .8rem; margin-top: .25rem; }
.delivery-location-readonly__map {
    height: 240px;
    border-radius: .65rem;
    border: 1px solid #e2e8f0;
    z-index: 1;
}
@media (max-width: 575px) {
    .rfq-card__body { padding: 1.15rem 1rem 1.25rem; }
    .rfq-stepper__label { display: none; }
    .rfq-stepper__item.is-current .rfq-stepper__label { display: block; }
    .rfq-hero { padding-bottom: 4rem; }
}
