#iqb-quote-wrapper {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.iqb-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 8px;
}

.iqb-step {
    flex: 1;
    text-align: center;
    padding: 8px 10px;
    border-radius: 999px;
    background: #f3f4f6;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
}

.iqb-step-active {
    background: #2563eb;
    color: #fff;
}

.iqb-step-content {
    display: none;
}

.iqb-step-content-active {
    display: block;
}

.iqb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.iqb-field {
    margin-bottom: 16px;
}

.iqb-field label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 500;
}

.iqb-field input[type="text"],
.iqb-field input[type="email"],
.iqb-field textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    padding: 8px 10px;
    font-size: 14px;
}

.iqb-field textarea {
    min-height: 90px;
}

.iqb-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 16px;
}

.iqb-service-card {
    border-radius: 16px;
    overflow: hidden;
    background: #f9fafb;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.iqb-service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(15,23,42,0.08);
}

.iqb-service-selected {
    border-color: #2563eb;
    box-shadow: 0 0 0 1px rgba(37,99,235,0.3);
}

.iqb-service-image {
    height: 140px;
    background-size: cover;
    background-position: center;
}

.iqb-service-body {
    padding: 14px 16px 16px;
}

.iqb-service-body h4 {
    margin: 0 0 6px;
    font-size: 15px;
}

.iqb-service-body p {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 10px;
}

.iqb-service-body button {
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 999px;
    border: none;
    background: #2563eb;
    color: #fff;
    cursor: pointer;
}

.iqb-nav {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.iqb-between {
    justify-content: space-between;
    align-items: center;
}

.iqb-nav button {
    border-radius: 999px;
    border: none;
    padding: 8px 18px;
    font-size: 14px;
    cursor: pointer;
    background: #2563eb;
    color: #fff;
}

.iqb-nav button:hover {
    background: #1d4ed8;
}

.iqb-nav .iqb-prev-step {
    background: #e5e7eb;
    color: #111827;
}

.iqb-options-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.iqb-option-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 10px;
    background: #f9fafb;
    font-size: 14px;
}

.iqb-option-price {
    margin-left: auto;
    font-size: 13px;
    color: #4b5563;
}

.iqb-pricing p {
    margin: 2px 0;
    font-size: 14px;
}

.iqb-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.4);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.iqb-modal-content {
    background: #fff;
    padding: 20px 22px;
    border-radius: 16px;
    max-width: 380px;
    width: 100%;
    text-align: center;
}

.iqb-modal-content h3 {
    margin-top: 0;
}

.iqb-modal-content button {
    margin: 6px;
    border-radius: 999px;
    border: none;
    padding: 7px 18px;
    cursor: pointer;
}
